Multiobjective optimization with polygon boundary
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Walter Roberson
il 22 Gen 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)
Vedere anche
Categorie
Scopri di più su Multiobjective Optimization in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!