StatControlCharts::QCCumSumChart Function

void QCCumSumChart(TMtx *Data, TVec *DrawVec, double k, double h, double mean, double sigma = 1.0, TVec *SHigh = null, TVec *SLow = null, double Confidence = 0.997);

CUMSum chart.

#NameTypeDescription
1DataTMtx *Each Data row contains replicated observation taken at specific time.
2DrawVecTVec *Returns values to be drawn.
3kdoubleDesign parameter of the V-mask. k is the rise in the V-arm corresponding to one sampling unit.
4hdoubleDesign parameter of the V-mask. h defines the rise in the arm coresponding to the distance from the origin to point vertex.
5meandoubleDefines the estimate of the in-control mean.
6sigma = 1.0doubleDefines known (or estimated) standard deviation of the sample means.
7SHigh = nullTVec *If set, returns high values for cumsum plot. When SHigh exceeds value h, the process is said to be out-of-control. Compare SHigh values to h to find if a process is out-of-control.
8SLow = nullTVec *If set, returns low values for cumsum plot. When SLow exceeds value h, the process is said to be out-of-control. Compare SLow values to h to find if a process is out-of-control.
9Confidence = 0.997doubleConfidence level for upper and lower control limit. Confidence must lie in the (0,1) interval.
Remarks:

Calculates CumSum Chart drawing values and additonal values, needed for deciding if some samples are out-of-control.
See www.itl.nist.gov/div898/handbook/pmc/section3/pmc323.htm to learn more about Cumsum QC charts.

Declared in Dew::Stats::Units::StatControlCharts · Dew.Stats/Units.StatControlCharts.h · Cross-compiler