Creates a u-Chart given the number of defects rates for a series of samples with varying sample sizes.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sizeSample
Type: array< System..::.Double >[]()[]
An array containing the size of each sample.
numberDefects
Type: array< System..::.Int32 >[]()[]
An array of arrays containing the number of defects. The number of defects must all be nonnegative. The length of the sizeSample and numberDefects arrays must be equal.

See Also