Creates an S chart given the within sample standard deviations for a series of unequally sized samples.

Namespace: Imsl.Chart2D.QC
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public SChart(
	AxisXY axis,
	int[] sampleSize,
	double[] s
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	sampleSize As Integer(), _
	s As Double() _
)
Visual C++
public:
SChart(
	AxisXY^ axis, 
	array<int>^ sampleSize, 
	array<double>^ s
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: array< System..::.Int32 >[]()[]
An array containing the number of observations in each sample. All samples must have at least two observations.
s
Type: array< System..::.Double >[]()[]
An array containing the within sample standard deviations for a series of samples.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionis thrown if the two input arrays do not have the same length.

See Also