Multiobjective optimization with polygon boundary
4 ビュー (過去 30 日間)
古いコメントを表示
I have a fixed designed space. I have the k values of conhull. How do I implement this boundary for the multiobjective optimization problem?

0 件のコメント
回答 (2 件)
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)
参考
カテゴリ
Help Center および File Exchange で Multiobjective Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!