The following code loads data, stored in binary file and then creates a XBar chart.
using Dew.Math; using Dew.Math.Units; using Dew.Stats.Units; namespace Dew.Examples { private void Example() { Matrix Data; Vector DrawVec; double cl,ucl,lcl; Data.LoadFromFile("ewma_data.mtx"); StatControlCharts.QCXChart(Data,DrawVec,out cl, out ucl, out lcl, 0.025); } }
|
Copyright (c) 1999-2010 by Dew Research. All rights reserved.
|