Computes forecasts, associated probability limits and \psi weights for an outlier contaminated time series whose underlying outlier free series obeys a general seasonal or non-seasonal ARMA model.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void ComputeForecasts(
	int nForecast
)
Visual Basic (Declaration)
Public Sub ComputeForecasts ( _
	nForecast As Integer _
)
Visual C++
public:
void ComputeForecasts(
	int nForecast
)

Parameters

nForecast
Type: System..::.Int32
An int scalar containing the maximum lead time for forecasts. nForecast must be greater than 0. Forecast origin is the time point of the last observed value in the time series, \text{n}. Forecasts are computed for lead times 1, 2, \ldots, \text{nForecast}, i.e. time points \text{n}+1, \text{n}+2,\ldots,\text{n}+\text{nForecast}.

Remarks

The Compute method must be invoked first before invoking this method. Otherwise, the method throws an InvalidOperationException exception.

See Also