Advertisement
Guest User

Untitled

a guest
May 31st, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. %specify data
  2. index = Data(:,1); %All Property
  3.  
  4. %specify model
  5. mod22 = arima( 'ARLags', [1,2], 'MALags', [1,2], 'Distribution', 'gaussian', 'Variance', garch(1,1));
  6.  
  7. %fit model
  8. [fit22,EstParamCov22,logL(9)] = estimate(mod22,index,'options', options);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement