how to change the step tolerance or constraint tolerance in fmincon?
86 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Maham Arooj
le 17 Mai 2020
Commenté : Maham Arooj
le 22 Mai 2020
I am working with fmincon and my work is to minimize the cost for t= 24 when i run my code it work for t=1 to t=17 but after that it show me the following error:
"No feasible solution found.
fmincon stopped because the size of the current search direction is less than
twice the default value of the step size tolerance but constraints are not
satisfied to within the default value of the constraint tolerance. "
how i resolve this problem please help me.....
Thank You!!!!
0 commentaires
Réponse acceptée
Sai Bhargav Avula
le 17 Mai 2020
Modifié(e) : Sai Bhargav Avula
le 17 Mai 2020
Hi,
The answer to why this occurs is explained in the following link 3rd part
options = optimset('fmincon','StepTolerance',1e-10);
fmincon(....., options);
Hope this helps!
3 commentaires
Sai Bhargav Avula
le 17 Mai 2020
I have updated the answers for better understanding. Kindly check that
Plus de réponses (0)
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!