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?

Answers (2)

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 Comments

I have the hull points in three dimensions. So, should I be adding the x and y axis in A = [..] and z in b = [...] ?
The contribution mentioned by @Matt J looks very useful for constructing the appropriate matrices.
(I notice that Matt J wrote the contribution!)

Sign in to comment.

Products

Release

R2024a

Tags

Asked:

on 22 Jan 2025

Commented:

on 25 Jan 2025

Community Treasure Hunt

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

Start Hunting!