"fsolve stopped because it exceeded the function evaluation limit, options.MaxFunctionEvaluations = 1.700000e+03."
Mostrar comentarios más antiguos
I am getting the error
"fsolve stopped because it exceeded the function evaluation limit, options.MaxFunctionEvaluations = 1.700000e+03.".
Somebody pls help.
Respuestas (1)
Gagan Baishya
el 15 de Sept. de 2021
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:
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!