XbarR Constructor (AxisXY, Int32, Double, Double) |
Creates an X-bar control chart given the means and ranges for a series of
equally sized samples.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public XbarR(
AxisXY axis,
int sampleSize,
double[] xbar,
double[] range
)
Public Sub New (
axis As AxisXY,
sampleSize As Integer,
xbar As Double(),
range As Double()
)
public:
XbarR(
AxisXY^ axis,
int sampleSize,
array<double>^ xbar,
array<double>^ range
)
new :
axis : AxisXY *
sampleSize : int *
xbar : float[] *
range : float[] -> XbarR
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
- sampleSize
- Type: SystemInt32
The number of observations in each sample.
It must be between 2 and 50.
- xbar
- Type: SystemDouble
An array containing the mean values for a series of samples.
- range
- Type: SystemDouble
An array containing the ranges of the samples.
The arrays xbar and range must have the same lengths.
See Also