TS_COEF
Syntax | Return Value | Arguments | Keywords | Examples | Version History | See Also
The TS_COEF function computes the coefficients φ1, φ2, ... , φP used in a P-th order autoregressive time-series forecasting model. This routine is written in the IDL language. Its source code can be found in the file ts_coef.pro in the lib subdirectory of the IDL distribution.
Syntax
Result = TS_COEF( X, P [, /DOUBLE] [, MSE=variable] )
Return Value
Returns a P-element vector whose type is identical to X.
Arguments
X
An n-element single- or double-precision floating-point vector containing time-series samples.
P
An integer or long integer scalar that specifies the number of coefficients to be computed.
Keywords
DOUBLE
Set this keyword to force the computation to be done in double-precision arithmetic.
MSE
Set this keyword to a named variable that will contain the mean square error of the P-th order autoregressive model.
Examples
IDL prints:
Version History