www.gusucode.com > econ 案例源码程序 matlab代码 > econ/SetVARMAModelParametersToAVariableExample.m

    %% Set VARMA Model Parameters to Variable
%%
% Start with a 2-dimensional VARMA(2, 2) specification structure in |Spec|:
load Data_VARMA22
%%
% Obtain and display the description of the model:
Model = vgxget(Spec, 'Model')
%%
% Obtain and display the MA coefficients of the model:
MA = vgxget(Spec, 'MA');
MA{:}