Returns the deviations for each forecast used for calculating the forecast confidence limits.

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

Syntax

C#
public double[] GetDeviations()
Visual Basic (Declaration)
Public Function GetDeviations As Double()
Visual C++
public:
array<double>^ GetDeviations()

Return Value

A double array of length BackwardOrigin+nForecast containing the deviations for calculating forecast confidence intervals. The confidence level is specified in the Confidence property.

Remarks

Note that the Forecast or GetForecastmethod must be invoked first before invoking this method. Otherwise, the method returns null.

See Also