PChart.CreateDeployedFixed Method

Creates a constant-size PChart directly in the Deployed state from externally supplied fitted parameters.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public static PChart CreateDeployedFixed(
	double centerLine,
	double lcl,
	double ucl,
	double sigma,
	double sampleSize,
	double pooledFractionNonconforming = NaN
)

Parameters

centerLine  Double
The frozen center line (p̄).
lcl  Double
The frozen lower control limit.
ucl  Double
The frozen upper control limit.
sigma  Double
The frozen sigma estimate.
sampleSize  Double
The constant sample size.
pooledFractionNonconforming  Double  (Optional)
The frozen pooled fraction nonconforming (p̄). When omitted, equals centerLine.

Return Value

PChart
A new PChart in the Deployed state.

See Also