ArimaModel.Forecast Method

Definition

Namespace: Extreme.Statistics.TimeSeriesAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Forecast() Returns the one step ahead forecast.
Forecast(Int32) Returns the forecast for the specified time period.

Forecast(Int32)

Returns the forecast for the specified time period.
C#
public override Vector<double> Forecast(
	int steps
)

Parameters

steps  Int32
The 0.0-based index of the time period.

Return Value

Vector<Double>
The forecast value for the time series for the period with index steps.

Exceptions

InvalidOperationExceptionThe model has not been fitted.

See Also