XbarS.CreateCharts Method (Chart,Int32[],Double[],Double[]) |
Creates a combined X-bar chart and S-chart given the means and
in sample standard deviations for a series of unequally sized samples.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static ShewhartControlChart[] CreateCharts(
Chart chart,
int[] sampleSize,
double[] xbar,
double[] w
)
Public Shared Function CreateCharts (
chart As Chart,
sampleSize As Integer(),
xbar As Double(),
w As Double()
) As ShewhartControlChart()
public:
static array<ShewhartControlChart^>^ CreateCharts(
Chart^ chart,
array<int>^ sampleSize,
array<double>^ xbar,
array<double>^ w
)
static member CreateCharts :
chart : Chart *
sampleSize : int[] *
xbar : float[] *
w : float[] -> ShewhartControlChart[]
Parameters
- chart
- Type: Imsl.Chart2D.Chart
The Chart object which is the parent of the two charts being created.
- sampleSize
- Type:System.Int32[]
An array containing the number of observations in each sample.
Each sample must have at least one observation.
- xbar
- Type:System.Double[]
An array containing the mean values for a series of samples.
- w
- Type:System.Double[]
An array containing the in sample standard deviations of the samples.
Return Value
Type:
ShewhartControlChart[]
An array of length two containing the
XBarS chart and the
SChart.
See Also