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 件)
Matt J
2025 年 1 月 22 日
1 投票
Use vert2lcon to find the inequalities for the constrained region,
Walter Roberson
2025 年 1 月 22 日
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
2025 年 1 月 25 日
Walter Roberson
2025 年 1 月 25 日
(I notice that Matt J wrote the contribution!)
カテゴリ
ヘルプ センター および File Exchange で Multiobjective Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!