Multiobjective optimization with polygon boundary
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Matt J
le 22 Jan 2025
Use vert2lcon to find the inequalities for the constrained region,
0 commentaires
Walter Roberson
le 22 Jan 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)
Voir également
Catégories
En savoir plus sur Multiobjective Optimization dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!