Multiobjective optimization with polygon boundary
Mostrar comentarios más antiguos
I have a fixed designed space. I have the k values of conhull. How do I implement this boundary for the multiobjective optimization problem?

Respuestas (2)
Matt J
el 22 de En. de 2025
1 voto
Use vert2lcon to find the inequalities for the constrained region,
Walter Roberson
el 22 de En. de 2025
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 comentarios
neil vaz
el 25 de En. de 2025
Walter Roberson
el 25 de En. de 2025
(I notice that Matt J wrote the contribution!)
Categorías
Más información sobre Multiobjective Optimization en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!