| GARCH Toolbox™ | ![]() |
Calculate Akaike (AIC) and Bayesian (BIC) information criteria for model order selection
AIC = aicbic(LLF,NumParams)
[AIC,BIC] = aicbic(LLF,NumParams,NumObs)
aicbic computes the Akaike and Bayesian information criteria, using optimized log-likelihood objective function (LLF) values as input. You can obtain the LLF values by fitting models of the conditional mean and variance to a univariate return series.
AIC = aicbic(LLF,NumParams) computes only the Akaike (AIC) information criteria.
[AIC,BIC] = aicbic(LLF,NumParams,NumObs) computes both the Akaike (AIC) and Bayesian (BIC) information criteria.
Since information criteria penalize models with additional parameters, parsimony is the basis of the AIC and BIC model order selection criteria.
Vector of optimized log-likelihood objective function (LLF) values associated with parameter estimates of the models to be tested. aicbic assumes that you obtained the LLF values from the estimation function garchfit or the inference function garchinfer. | |
Number of estimated parameters associated with each LLF value in LLF. NumParams can be a scalar applied to all values in LLF, or a vector the same length as LLF. All elements of NumParams must be positive integers. Use garchcount to compute NumParams values. | |
Sample size of the observed return series you associate with each value of LLF. NumObs can be a scalar applied to all values in LLF, or a vector the same length as LLF. It is required to compute BIC. All elements of NumObs must be positive integers. |
Vector of AIC statistics associated with each LLF objective function value. The AIC statistic is defined as AIC = (-2*LLF) + (2*NumParams) | |
Vector of BIC statistics associated with each LLF objective function value. The BIC statistic is defined as BIC = = (-2*LLF) + (NumParams * log(NumObs)) |
See Akaike and Bayesian Information Criteria.
garchdisp, garchfit, garchinfer
Box, G.E.P., G.M. Jenkins, and G.C. Reinsel, Time Series Analysis: Forecasting and Control, Third edition, Prentice Hall, 1994.
![]() | Functions — Alphabetical List | archtest | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |