options = optimset('MaxFunEvals',999) does not work
    1 view (last 30 days)
  
       Show older comments
    
Hi all,
I've also tried
hybridopts = optimset('MaxFunEvals', 1200)
And keep on getting:
lsqcurvefit stopped because it exceeded the function evaluation limit, options.MaxFunEvals = 200 (the default value).
Running Matlab 2012a on linux 64bit, using lsqcurvefit with std-options.
Any help?
thx...
3 Comments
Answers (1)
  Alan Weiss
    
      
 on 15 Oct 2013
        You have to include the options in the function call. Something like
 x = lsqcurvefit(fun,x0,xdata,ydata,lb,ub,hybridopts)
Alan Weiss
MATLAB mathematical toolbox documentation
0 Comments
See Also
Categories
				Find more on Nonlinear Optimization 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!