フィルターのクリア

multi-variable optimization in matlab?

5 ビュー (過去 30 日間)
Abdelrahman Taha
Abdelrahman Taha 2019 年 12 月 6 日
コメント済み: Abdelrahman Taha 2019 年 12 月 7 日
Hi,
I need to minimize a function that involves two variables. The problem is that this function is not directly related to those two variables, which means i can't use the standard optimization functions like fminsearch. Many other variables are to be calculated first, which are actually functions of the first two variables, and then they're used to calculate the function. And I can't put the function and the two variables in one equation. So, what options do I have in matlab to solve this optimization problem?
Thanks

採用された回答

Matt J
Matt J 2019 年 12 月 6 日
編集済み: Matt J 2019 年 12 月 6 日
Many other variables are to be calculated first, which are actually functions of the first two variables, and then they're used to calculate the function....And I can't put the function and the two variables in one equation.
None of the above are requirements of fminsearch or any other Matlab optimization routine. Go ahead and create a function with as many lines as you need. Pass this function to fminsearch, fminunc, or whatever...
  4 件のコメント
Matt J
Matt J 2019 年 12 月 7 日
編集済み: Matt J 2019 年 12 月 7 日
You're welcome. One final footnote, though. fminunc and fmincon assume that your objective function is differentiable. This does not mean it must be expressed in a single of code, but it means you must be sure, on analytical grounds, that the code represents a differentiable operation. fminsearch does not require this.
Abdelrahman Taha
Abdelrahman Taha 2019 年 12 月 7 日
Thanks for highlighting that. They're all linear equations, so both fmincon and fminsearch will be ok.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by