ControlChart.ApplyCore Method

When overridden in a derived class, applies new observations and returns the shell of a new chart instance that Apply(Vector<Double>) will place in the Fitted state. Called by Apply(Vector<Double>) after state validation.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
protected abstract ControlChart ApplyCore(
	Vector<double> data
)

Parameters

data  Vector<Double>
The new observations to apply.

Return Value

ControlChart
A new ControlChart instance. The base class sets its state to Fitted.

See Also