3-objective optimization weights
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I need a weight function for 3-objective optimization that will look like weights proposed in attachment. Is there a way to present this matrix as a function? Thank you for your help.
Jasmina
3 Commenti
Alan Weiss
il 19 Giu 2018
Again, I do not understand what you want. For three-objective optimization, based on your latest comment, I would use
t = linspace(0,1,N)';
w1 = [t,(1-t)/2,(1-t)/2];
w2 = [(1-t)/2,t,(1-t)/2];
w3 = [(1-t)/2,(1-t)/2,t];
The rows of w1, w2, or w3 seem to me to satisfy your requirement. But I believe that you know this already, so again do not understand what you want.
Alan Weiss
MATLAB mathematical toolbox documentation
Risposte (0)
Vedere anche
Categorie
Scopri di più su Surrogate 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!