How to show value after every fsolve iteration?
4 次查看(过去 30 天)
显示 更早的评论
I am using fsolve to solve 9 equations with 9 unknowns. I am using the option optimset('Display','iter-detailed') to get some information after every iteration. My question is how do I get the value of my unknowns after every iteration? I would like to see how my unknowns are converging toward a solution. Is there any way to extract this?
Thank you.
0 个评论
回答(1 个)
Alan Weiss
2015-2-17
You can set the PlotFcns option to @optimplotx to see the unknowns at each iteration. You can also write an output function to store the values of the variables as the iterations proceed.
Alan Weiss
MATLAB mathematical toolbox documentation
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!