SChart Constructor (AxisXY, Int32, Double) |
Creates an S chart given the within sample standard deviations for a series of
unequally sized samples.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public SChart(
AxisXY axis,
int[] sampleSize,
double[] s
)
Public Sub New (
axis As AxisXY,
sampleSize As Integer(),
s As Double()
)
public:
SChart(
AxisXY^ axis,
array<int>^ sampleSize,
array<double>^ s
)
new :
axis : AxisXY *
sampleSize : int[] *
s : float[] -> SChart
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
- sampleSize
- Type: SystemInt32
An array containing the number of observations in each sample.
All samples must have at least two observations.
- s
- Type: SystemDouble
An array containing the within sample standard deviations for a series of samples.
Exceptions Exception | Condition |
---|
ArgumentException | is thrown if the two input arrays do
not have the same length.
|
See Also