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