x = lsqcurvefit(fun,x0,xdata,ydata,lb,ub,options)
如果不知道lb和ub,只想设置options里的maxfunevals的值,请问应该怎么输,谢谢。

 Réponse acceptée

yoval
yoval le 23 Nov 2022

0 votes

x = lsqcurvefit(fun,x0,xdata,ydata,[],[],options)
options 可以用 optimset 设置:options = optimset('MaxFunEvals',1e8)

Plus de réponses (0)

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!