Solver Stop Prematurely as new equation added

9 次查看(过去 30 天)
Hi, How do I solve this? keep getting the solve stop prematurely. May I know what should I do? this happen when i try added another equation in my model. Any Suggestion?

回答(1 个)

Torsten
Torsten 2024-6-19
Use an options structure for "fsolve" as
options = optimset('MaxFunEvals',100000,'MaxIter',100000)
sol = fsolve(...,options)
and try again.
  2 个评论
Muhd Jasrim
Muhd Jasrim 2024-6-19
options = optimset('MaxFunEvals',100000,'MaxIter',100000)
steady_state_values = fsolve(steady_state_fun, initial_guess, options);
am I right, the way I wrote the codes? because it still prematurely stop. Does this relate to the equation I inserted?
Thankyou :)
Torsten
Torsten 2024-6-19
编辑:Torsten 2024-6-19
The options
options = optimset('MaxFunEvals',100000,'MaxIter',100000)
give "fsolve" more iterations to converge (if the solver stops now prematurely, it should show that the Maximum Number of Iterations (10000) has been reached).
If this doesn't help and the problem came after inserting the new equation, you should think about why the new equation made your problem that more difficult or even unsolvable.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by