The following code will create R chart:
using Dew.Math; using Dew.Math.Units; using Dew.Stats.Units; namespace Dew.Examples { private void Example() { Matrix Data = new Matrix(0,0); Vector DrawVec = new Vector(0); double cl,ucl,lcl; Data.LoadFromFile("data.mtx"); StatControlCharts.QCRChart(Data,DrawVec,out cl, out ucl, out lcl, 0.025); } }
|
Copyright (c) 1999-2010 by Dew Research. All rights reserved.
|