Matlab optimization module problem
8 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2016 年 11 月 30 日
編集済み: MathWorks Support Team
2023 年 5 月 17 日
I am using matlab R2016a. I am using optimization module for my application
trying to find the minimum in my function (below is the main optimization
lines). There are two variables that I'm interested to optimize them to
make the function minimum. The objective function has lots of local
minimums. Unfortunately each run gave me different variables. Sometimes
there's 30% or more difference between runs results. And sometimes the
optimization module get stuck in one of the local minimums. I tried to tune
every tolerance and step size but no success so far and I don't get a
consistent final results for my two variables. Could you please help me how
can I tune the Options to have a quicker and consistent result. ; options =
optimoptions('fmincon','Display','iter','Algorithm','
sqp','MaxFunctionEvaluations',1500,'MaxIterations',1500,'
ConstraintTolerance',1.0e-10,'OptimalityTolerance',1.0e-10,'StepTolerance',1.0e-10);;
estparam=fmincon(@objfun,estparam0,A,b,Aeq,beq,lb,ub,[],options)
採用された回答
MathWorks Support Team
2023 年 5 月 17 日
編集済み: MathWorks Support Team
2023 年 5 月 17 日
If you have access to the Global Optimization Toolbox, you may use “GlobalSearch” or “MultiStart” features of the toolbox to obtain the global minimum to your problem.
In addition, another potential workaround is to use the function “patternsearch”
Example:
>> options = optimoptions('patternsearch','Display','iter','MaxFunctionEvaluations',1500,'MaxIterations',1500,'ConstraintTolerance',1.0e-10,'StepTolerance',1.0e-10);
>> estparam=patternsearch(@objfun,estparam0,A,b,Aeq,beq,lb,ub,[],options)
Finally, you may also try calling “fmincon” multiple times in a “for” or “parfor” loop, giving different initial guesses each time and keeping track of the best solution. This will not necessarily guarantee a global minimum, but it will likely yield a better and more consistent answer.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surrogate Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!