FixedLimitSeries Constructor

Initializes a new FixedLimitSeries in Fitted mode with analyzed data and fitted parameters.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public FixedLimitSeries(
	Vector<double> values,
	IIndex? index,
	double centerLine,
	double lowerControlLimit,
	double upperControlLimit,
	double sigma
)

Parameters

values  Vector<Double>
The analyzed data points. Must not be null.
index  IIndex
The index providing labels or positions for the data points, or null if no labels are available.
centerLine  Double
The center line of the control chart series.
lowerControlLimit  Double
The lower control limit.
upperControlLimit  Double
The upper control limit.
sigma  Double
The within-subgroup standard deviation estimate.

Exceptions

ArgumentNullExceptionvalues is null.

See Also