how to optimize a function which optimization variable is not in it directly?

3 ビュー (過去 30 日間)
Sara Rajaee
Sara Rajaee 2019 年 7 月 17 日
回答済み: Walter Roberson 2019 年 7 月 25 日
there is a function in the picture which I should optimize it. Dm and I are matrixes . I has an indirect role in cacules of this function. how can I do that in matlab

回答 (2 件)

Alan Weiss
Alan Weiss 2019 年 7 月 19 日
This looks like a binary programming problem. I don't know how the D_m depend on the I_{n,k}, but it looks like there is no big issue. Use intlinprog for the solution, or the problem-based approach.
Alan Weiss
MATLAB mathematical toolbox documentation
  3 件のコメント
Walter Roberson
Walter Roberson 2019 年 7 月 21 日
There is nothing in the formula that you posted that involves max()?
Sara Rajaee
Sara Rajaee 2019 年 7 月 25 日
yeah, I have not posted all of the question here, but in part of that there are some max() function.

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


Walter Roberson
Walter Roberson 2019 年 7 月 25 日
If you are using max and it is a discrete programming problem then try all of the possible input combinations and pick the best results.
If trying all of the possible inputs is not feasible (for example too slow above 2^40 possibilities) then ga()
fmincon cannot be used for discrete variables. intlinprog cannot be used when max() appears in the formula or constraints.
Sometimes instead of using max it can be feasible to run several slightly different problems, each assuming that one of the possibilities is the max, and then to take the result in which the max was true.

カテゴリ

Help Center および File ExchangeProblem-Based Optimization Setup についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by