SpecificationLimits Constructor

Initializes a new instance of SpecificationLimits with the specified limits and optional target.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public SpecificationLimits(
	double? Lower,
	double? Upper,
	double? Target = null
)

Parameters

Lower  Nullable<Double>
The lower specification limit (LSL), or null if no lower limit is specified.
Upper  Nullable<Double>
The upper specification limit (USL), or null if no upper limit is specified.
Target  Nullable<Double>  (Optional)
An optional process target. Defaults to null.

Exceptions

ArgumentException

Both Lower and Upper are null.

-or-

Lower is greater than or equal to Upper when both are specified.

ArgumentOutOfRangeException

Lower, Upper, or Target is not a finite number.

See Also