Solving for scalar in matrix norm minimization

조회 수: 9 (최근 30일)
matlab user guy
matlab user guy 2014년 9월 4일
댓글: matlab user guy 2014년 9월 4일
Is it possible in MATLAB to minimize argmin_alpha norm( X - alpha * Y , 1) (where X and Y are matrices)?
I want the following constraints:
alpha > 0, X - alpha * Y >= eps
Thanks
  댓글 수: 2
Matt J
Matt J 2014년 9월 4일
The thing you propose to minimize X - alpha * Y _1 is not a scalar. Do you mean you want to minimize some squared norm of this difference? If so, which norm? L2? Frobenius?
matlab user guy
matlab user guy 2014년 9월 4일
Sorry there was a problem with the text. This should be the matrix norm. The double bars were removed.

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

채택된 답변

Matt J
Matt J 2014년 9월 4일
편집: Matt J 2014년 9월 4일
If you have the Optimization Toolbox, you could also use fminimax, although that might be overkill for a simple scalar problem. Recall that the L1-norm of a matrix is its maximum absolute row sum.
  댓글 수: 1
matlab user guy
matlab user guy 2014년 9월 4일
Thank you.
I have that toolbox. fminbnd doesn't seem to be working, but I'll check out fminimax.

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

추가 답변 (1개)

Matt J
Matt J 2014년 9월 4일
편집: Matt J 2014년 9월 4일
The system of linear inequalities
X(i) - alpha * Y(i) >= eps
are equivalent to some 1D interval [alpha_lower, alpha_upper]. Once you find this interval, you can apply fminbnd.
The analysis needed to find the interval is simple, but you could let this FEX file do it for you,

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by