Exponential Smoothing Model Constructor
Constructs a new ExponentialSmoothingModel object.
Definition
Namespace: Extreme.Statistics.TimeSeriesAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
ArgumentNullException | variable is null. |
ArgumentOutOfRangeException | method is not a valid ExponentialSmoothingMethod value. |