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?

回答(2 个)

Matt J
Matt J 2025-1-22
Use vert2lcon to find the inequalities for the constrained region,

Walter Roberson
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
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!)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Multiobjective Optimization 的更多信息

标签

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by