Defining a stopping criterion for fmincon
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Matthew Hunt
am 4 Mär. 2020
Beantwortet: Sai Bhargav Avula
am 26 Mär. 2020
I am looking at an optimisation problem with the following objective function:
Here, is some data and and is a function which I want to find the values of X for which I is a minimum. Now I thought I would have to set the following:
options = optimset('TolFun',1e-3);
problem = createOptimProblem('fmincon','x0',X_old,'objective',fun,'lb',LB,'ub',UB,'options',options);
Is this the right thing to do?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!