StatControlCharts::QCUChart Function

Overload List

#SignatureDescription
1void QCUChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997);U-Chart.
2void QCUChart(TVec *Data, TVec *SampleSize, TVec *DrawVec, double &CL, TVec *UCL, TVec *LCL, double Confidence = 0.997);In this case each sample can have different size. You must store sizes in SampleSize vector.

Overload 1: void QCUChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997);

U-Chart.

#NameTypeDescription
1DataTVec *
2SampleSizeint
3DrawVecTVec *
4CLdouble &
5UCLdouble &
6LCLdouble &
7Confidence = 0.997double
Remarks:

Constructs U-Chart drawing values, center line, upper and lower control limit. The assumption is all samples have the same SampleSize.

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

Overload 2: void QCUChart(TVec *Data, TVec *SampleSize, TVec *DrawVec, double &CL, TVec *UCL, TVec *LCL, double Confidence = 0.997);

In this case each sample can have different size. You must store sizes in SampleSize vector.

#NameTypeDescription
1DataTVec *Data to be analyzed. Each value represents number of defects.
2SampleSizeTVec *Sample size. Can be integer or vector.
3DrawVecTVec *Returns values to be drawn.
4CLdouble &Returns control Chart centerline.
5UCLTVec *Returns control Chart upper control limit.
6LCLTVec *Returns control Chart lower control limit.
7Confidence = 0.997doubleConfidence level for upper and lower control limit. Confidence must lie in the (0,1) interval.
Remarks:

An exception is raised if Data and SampleSize length do not match.

See Also: Dew.Stats.Tee.QCSeries, StatControlCharts::QCPChart, StatControlCharts::QCNPChart, StatControlCharts::QCCChart
Declared in Dew::Stats::Units::StatControlCharts · Dew.Stats/Units.StatControlCharts.h · Cross-compiler