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!