ARMAOutlierIdentificationComputeForecasts Method |
Computes forecasts, associated probability limits and
weights for an outlier contaminated time series whose underlying outlier free
series obeys a general seasonal or non-seasonal ARMA model.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public void ComputeForecasts(
int nForecast
)
Public Sub ComputeForecasts (
nForecast As Integer
)
public:
void ComputeForecasts(
int nForecast
)
member ComputeForecasts :
nForecast : int -> unit
Parameters
- nForecast
- Type: SystemInt32
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,
. Forecasts are
computed for lead times
,
i.e. time points
.
Remarks
The Compute method must be invoked first
before invoking this method. Otherwise, the method
throws an InvalidOperationException
exception.
See Also