help how can I find the minimum number and return it's index in each row?
Mostrar comentarios más antiguos
help how can I find the minimum number and return it's index in each row?
1 comentario
maha ismail
el 13 de Nov. de 2014
Respuesta aceptada
Más respuestas (1)
Guillaume
el 13 de Nov. de 2014
To find the minimum of a row, use:
min(m, [], 2)
Probably, the simplest way to ignore 0s is to replace them with NaNs before calling min.
m(m == 0) = nan;
[mval, mcol] = min(m, [], 2);
1 comentario
maha ismail
el 13 de Nov. de 2014
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!