Click or drag to resize

ProcessCapability(DoubleVector, Int32, Double, Double) Constructor

Computes the process capability parameters Cp, Cpm, Cp for normally distributed data. Target is taken to be the mean the upper and lower specification limits.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public ProcessCapability(
	DoubleVector data,
	int subgroupSize,
	double LowerSpecLimit,
	double UpperSpecLimit
)

Parameters

data  DoubleVector
Input measurements.
subgroupSize  Int32
Size of subgroups. The data needs to be laid out in contiguous subgroups of equal size.
LowerSpecLimit  Double
Lower control limit.
UpperSpecLimit  Double
Upper control limit.
Exceptions
ExceptionCondition
ArgumentExceptionThe input data must have a non-zero length.
ArgumentExceptionThe subgroup size must be greater than zero.
ArgumentExceptionThe upper spec limit must be greater than the lower spec limit.
See Also