Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void QCUChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997); | U-Chart. |
| 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. |
Overload 1: void QCUChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997);
U-Chart.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | |
| 2 | SampleSize | int | |
| 3 | DrawVec | TVec * | |
| 4 | CL | double & | |
| 5 | UCL | double & | |
| 6 | LCL | double & | |
| 7 | Confidence = 0.997 | double |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | Data to be analyzed. Each value represents number of defects. |
| 2 | SampleSize | TVec * | Sample size. Can be integer or vector. |
| 3 | DrawVec | TVec * | Returns values to be drawn. |
| 4 | CL | double & | Returns control Chart centerline. |
| 5 | UCL | TVec * | Returns control Chart upper control limit. |
| 6 | LCL | TVec * | Returns control Chart lower control limit. |
| 7 | Confidence = 0.997 | double | Confidence 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