Hello everyone, I have a question in optimization
조회 수: 2 (최근 30일)
이전 댓글 표시
Please find the attached question
댓글 수: 3
Bruno Luong
2020년 11월 16일
편집: Bruno Luong
2020년 11월 16일
In this pdf: r_m c_m cannot be vectors since they are the bounds of the norms, which must be scalars.
채택된 답변
Bruno Luong
2020년 11월 16일
편집: Bruno Luong
2020년 11월 17일
The constraint (1c)
norm(R11∗*w+r00, Inf) >= rm
can be transformed as a union of 42 halfplanes
R11(i,:)*w+r00(i,:) >= rm
or
R11(i,:)*w+r00(i,:) <= -rm
for i=1,2,...21.
I would then suggest to solve 42 sub linear-programing problems by replacing the (1c) with one of those conditions. The sub problem can be solved with intlinprog, then we just take the argmin of those 42 problem solutions.
It must be more preditable and robust than GA.
댓글 수: 12
Bruno Luong
2020년 11월 23일
Does it really matter for accuracy? At the cost of 2 matrix-vector product per gradient evaluation instead of one?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Least Squares에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!