Exponential Smoothing Model.Forecast Method
Definition
Namespace: Extreme.Statistics.TimeSeriesAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Forecast() | Returns the one step ahead forecast. |
Forecast( | Returns the forecast for the specified number of steps ahead. |
Forecast(Int32)
Returns the forecast for the specified number of steps ahead.
public override Vector<double> Forecast(
int steps
)
Parameters
- steps Int32
- The number of forecasts to return.
Return Value
Vector<Double>A vector containing the forecast value for the time series.
Remarks
Note that the first element of the return value, with index 0, is the one step ahead forecast.