Borrar filtros
Borrar filtros

Solving for scalar in matrix norm minimization

2 visualizaciones (últimos 30 días)
matlab user guy
matlab user guy el 4 de Sept. de 2014
Comentada: matlab user guy el 4 de Sept. de 2014
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 comentarios
Matt J
Matt J el 4 de Sept. de 2014
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 el 4 de Sept. de 2014
Sorry there was a problem with the text. This should be the matrix norm. The double bars were removed.

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 4 de Sept. de 2014
Editada: Matt J el 4 de Sept. de 2014
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 comentario
matlab user guy
matlab user guy el 4 de Sept. de 2014
Thank you.
I have that toolbox. fminbnd doesn't seem to be working, but I'll check out fminimax.

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 4 de Sept. de 2014
Editada: Matt J el 4 de Sept. de 2014
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,

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by