필터 지우기
필터 지우기

3-objective optimization weights

조회 수: 4 (최근 30일)
Jasmina Burek
Jasmina Burek 2018년 6월 15일
댓글: Alan Weiss 2018년 6월 19일
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
Jasmina Burek
Jasmina Burek 2018년 6월 18일
Hi Alan, Thank you for your reply. I attached a figure in my original post how the weights should look like, but more gradual. For example, for two-objective optimization problem I used weight=[t(1,r),1-(t(1,r))]; t = linspace(0,1,N); I want to avoid listing all the weights as a matrix. Thank you for your help.
Alan Weiss
Alan Weiss 2018년 6월 19일
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

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by