"fsolve stopped because it exceeded the function evaluation limit, options.Ma​xFunctionE​valuations = 1.700000e+03."

25 次查看(过去 30 天)
I am getting the error
"fsolve stopped because it exceeded the function evaluation limit, options.MaxFunctionEvaluations = 1.700000e+03.".
Somebody pls help.

回答(1 个)

Gagan Baishya
Gagan Baishya 2021-9-15
Hello,
You can use options & optimoptions to avoid the error.
options = optimoptions('fsolve');
options.MaxIterations = 1000;
options.MaxFunctionEvaluations = 1.700000e+03;
More information on options can be found in the documentation link below:

类别

Help CenterFile Exchange 中查找有关 Modeling 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by