A question about fsolve

1 view (last 30 days)
Mahsa Babaee
Mahsa Babaee on 16 May 2021
Commented: Mahsa Babaee on 17 May 2021
Hello,
Could any one please explain me what does
optimoptions('fsolve','Display','off')
mean in the latter code? and why it should be mentioned?
s = fsolve(@(s) solvef(s,n,m),s0,optimoptions('fsolve','Display','off'));
Thanks a lot for your attentions.

Accepted Answer

Walter Roberson
Walter Roberson on 16 May 2021
fsolve() normally gives a summary after it runs, talking about the reason it stopped running (even in the case that everything worked perfectly.) That can be a distraction from what the rest of the program is trying to accomplish, so it is not uncommon to want to get rid of the termination message.
  1 Comment
Mahsa Babaee
Mahsa Babaee on 17 May 2021
Thanks for your valuable explanations dera Wlater Roberson.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!