Pointwise Limit Series Constructor
Initializes a new PointwiseLimitSeries in Fitted
mode with analyzed data, index, center line, and pointwise control
limits.
Definition
Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
public PointwiseLimitSeries(
Vector<double> values,
IIndex? index,
double centerLine,
Vector<double> lowerControlLimits,
Vector<double> upperControlLimits
)Parameters
- values Vector<Double>
- The analyzed data points. Must not be null.
- index IIndex
- The index providing labels or positions for the data points, or null if no labels are available.
- centerLine Double
- The scalar center line (baseline rate or mean) for this series.
- lowerControlLimits Vector<Double>
- The per-point lower control limits. Must not be null and must have the same length as values.
- upperControlLimits Vector<Double>
- The per-point upper control limits. Must not be null and must have the same length as values.
Exceptions
| Argument | values, lowerControlLimits, or upperControlLimits is null. |
| Argument | lowerControlLimits or upperControlLimits does not have the same length as values. |