Multiobjective optimization with polygon boundary

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 件)

Walter Roberson
Walter Roberson 2025 年 1 月 22 日

0 投票

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 日
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 日
The contribution mentioned by @Matt J looks very useful for constructing the appropriate matrices.
(I notice that Matt J wrote the contribution!)

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

カテゴリ

製品

リリース

R2024a

タグ

質問済み:

2025 年 1 月 22 日

コメント済み:

2025 年 1 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by