CusumChartOptions Class

Configuration options for a CusumChart.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public class CusumChartOptions
Inheritance
Object  →  CusumChartOptions

Remarks

The CUSUM chart requires two design parameters: the reference value (allowance) k and the decision interval h. These must both be positive.

Constructors

CusumChartOptionsInitializes a new instance of the CusumChartOptions class

Properties

DecisionInterval Gets the decision interval h (threshold). The process is declared out of control when the upper or lower cumulative sum exceeds h.
ReferenceValue Gets the CUSUM reference value k (allowance), used to standardize the increments accumulated in the upper and lower cumulative sums.
Sigma Gets the optional explicit process sigma (σ) to use for standardizing observations in the CUSUM recursion.
SigmaEstimator Gets the sigma estimator used to standardize observations in the CUSUM recursion.
Target Gets the optional process target value (μ₀) used as the center value for the CUSUM recursion.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also