LevenbergMarquardt problem in Multivariate GARCH

1 view (last 30 days)
I tried to use the code, proposed by Kevin Sheppard in his UCSD GARCH Toolbox. There is a part from the file "scalar_bekk_mvgarch": "[t k]=size(data); garchmat=zeros(k,1+p+q); options=optimset('fmincon'); options=optimset(options,'TolCon',1e-3,'Display','off','Diagnostics','off','LargeScale','off', 'LevenbergMarquardt','on');"
So Matlab gives an error message: "The LevenbergMarquardt option is no longer valid." What should I change there without any harm to sense of the code?

Accepted Answer

Matt J
Matt J on 23 Oct 2012
I tend to think that you should just get rid of
options=optimset(options,'TolCon',1e3,'Display','off','Diagnostics','off','LargeScale','off', 'LevenbergMarquardt','on');
and see how well the default settings do. TolCon=1e-3 looks very strange to me
  1 Comment
Erdni
Erdni on 24 Oct 2012
thank you, I just got rid of "'LevenbergMarquardt','on'". And everything run pretty good.

Sign in to comment.

More Answers (0)

Categories

Find more on Conditional Variance Models in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!