Exponential Smoothing Model Constructor
Constructs a new ExponentialSmoothingModel object.
Definition
Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public ExponentialSmoothingModel(
Vector<double> variable,
ExponentialSmoothingMethod method
)
Parameters
- variable Vector<Double>
- A Vector<T> that contains time series data.
- method ExponentialSmoothingMethod
- A ExponentialSmoothingMethod value that specifies the smoothing method.
Exceptions
Argument | variable is null. |
Argument | method is not a valid ExponentialSmoothingMethod value. |