PointwiseLimitSeries Constructor

Initializes a new PointwiseLimitSeries in Fitted mode with analyzed data, index, center line, and pointwise control limits.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public PointwiseLimitSeries(
	Vector<double> values,
	IIndex? index,
	double centerLine,
	Vector<double> lowerControlLimits,
	Vector<double> upperControlLimits
)

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 scalar center line (baseline rate or mean) for this series.
lowerControlLimits  Vector<Double>
The per-point lower control limits. Must not be null and must have the same length as values.
upperControlLimits  Vector<Double>
The per-point upper control limits. Must not be null and must have the same length as values.

Exceptions

ArgumentNullExceptionvalues, lowerControlLimits, or upperControlLimits is null.
ArgumentExceptionlowerControlLimits or upperControlLimits does not have the same length as values.

See Also