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

 채택된 답변

yoval
yoval 2022년 11월 23일

0 개 추천

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

태그

질문:

2022년 11월 23일

답변:

2022년 11월 23일

Community Treasure Hunt

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

Start Hunting!