Multiobjective optimization with polygon boundary

16 ビュー (過去 30 日間)
neil vaz
neil vaz 2025 年 1 月 22 日 15:39
コメント済み: Walter Roberson 2025 年 1 月 25 日 21:44
I have a fixed designed space. I have the k values of conhull. How do I implement this boundary for the multiobjective optimization problem?

回答 (2 件)

Matt J
Matt J 2025 年 1 月 22 日 18:22
Use vert2lcon to find the inequalities for the constrained region,

Walter Roberson
Walter Roberson 2025 年 1 月 22 日 18:29
convex hulls can always be represented as a series of linear inequalities, so you would use the "A" and "b" matrices
A = [....]
b = [...]
sol = gamultiobj(FUNCTION, num_parameters, A, b)
  2 件のコメント
neil vaz
neil vaz 2025 年 1 月 25 日 20:13
I have the hull points in three dimensions. So, should I be adding the x and y axis in A = [..] and z in b = [...] ?
Walter Roberson
Walter Roberson 2025 年 1 月 25 日 21:44
The contribution mentioned by @Matt J looks very useful for constructing the appropriate matrices.
(I notice that Matt J wrote the contribution!)

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

カテゴリ

Help Center および File ExchangeMultiobjective Optimization についてさらに検索

タグ

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by