How to remove message from fsolve result
54 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Zulhash Uddin
le 6 Mar 2011
Commenté : Walter Roberson
le 26 Fév 2023
%Following code giving results with message
clc
clear
options = optimset('Display','off');
f=@(x)[3*x(1)^3+x(1)^2-18; x(2)^3-5*x(2)^2+10];
x = fsolve(f,[0.001 0.001])
%Results and message as follows:
Equation solved.
fsolve completed because the vector of function values is near zero as measured by the default value of the function tolerance, and the problem appears regular as measured by the gradient.
x =
1.7125 1.7556
0 commentaires
Réponse acceptée
the cyclist
le 6 Mar 2011
I think the issue is that you have not actual used "options" in the call to fsolve, so it is using the default options (including display being on).
2 commentaires
the cyclist
le 6 Mar 2011
No, you defined the variable "options". You did not include it in your call to fsolve.
Plus de réponses (2)
Oleg Komarov
le 6 Mar 2011
Then include options in the call to fsolve:
x = fsolve(f,[0.001 0.001],options)
Oleg
0 commentaires
Fazlollah
le 25 Fév 2023
use this line of code for fsolve options
options = optimset('Display','off');
1 commentaire
Walter Roberson
le 26 Fév 2023
The original poster was already doing that. The problem was that they were not passing the options to fmincon.
Voir également
Catégories
En savoir plus sur Solver Outputs and Iterative Display dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!