How to show value after every fsolve iteration?
조회 수: 5 (최근 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!