void QCMRChart(TVec *Data, double &CL, double &UCL, double &LCL, double Confidence = 0.997);
Moving range chart.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | Data to be analyzed. Each value represents number of defects. |
| 2 | CL | double & | Returns control Chart centerline. |
| 3 | UCL | double & | Returns control Chart upper control limit. |
| 4 | LCL | double & | Returns control Chart lower control limit. |
| 5 | Confidence = 0.997 | double | Confidence level for upper and lower control limit. Confidence must lie in the (0,1) interval. |
Remarks:
Uses Data values to construct a moving-range quality control chart. This QC chart type can be used for individual measurements (sample size = 1).
Declared in Dew::Stats::Units::StatControlCharts · Dew.Stats/Units.StatControlCharts.h · Cross-compiler