ARAutoUnivariateGetForecast Method |
Returns a specified number of forecasts beyond the last value in the series.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] GetForecast(
int nForecast
)
Public Function GetForecast (
nForecast As Integer
) As Double()
public:
array<double>^ GetForecast(
int nForecast
)
member GetForecast :
nForecast : int -> float[]
Parameters
- nForecast
- Type: SystemInt32
An int representing the number of requested forecasts
beyond the last value in the series.
Return Value
Type:
Double
A
double array containing the
nForecast+BackwardOrigin
forecasts. The first
BackwardOrigin forecasts are one-step
ahead forecasts for the last
BackwardOrigin values in the
series. The next
nForecast values in the returned series
are forecasts for the next values beyond the series.
Exceptions See Also