Click or drag to resize

ProcessCapability(DoubleVector, Int32, Double, Double, Double) Constructor

Computes the process capability parameters Cp, Cpm, Cp for normally distributed data.

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

Parameters

data  DoubleVector
Input measurements.
subgroupSize  Int32
Size of subgroups. The data must be laid out in contiguous subgroups of equal size.
LowerSpecLimit  Double
Lower specification limit.
UpperSpecLimit  Double
Upper specification limit.
Target  Double
Control target.
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