ControlSeries.LowerControlLimits Property

Gets the per-point lower control limits for this series.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public abstract Vector<double> LowerControlLimits { get; }

Property Value

Vector<Double>

Remarks

For FixedLimitSeries this returns a ConstantVector<T> wrapping the scalar LowerControlLimit so that generic consumers obtain a uniform vector-based API without unnecessary allocation.

For PointwiseLimitSeries this returns the per-point limit vector stored at analysis time.

Exceptions

InvalidOperationException The series is in deployed mode. Control limit vectors are not available when the series is in deployed mode.

See Also