I have a matrix not a vector and I need the minimum value except 0 and position of minimum value in each row
help how can I find the minimum number and return it's index in each row?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
maha ismail
el 13 de Nov. de 2014
Comentada: maha ismail
el 13 de Nov. de 2014
help how can I find the minimum number and return it's index in each row?
Respuesta aceptada
Manoj
el 13 de Nov. de 2014
a=[8,2,3,4,5];
[b,ix]=min(a);
ix gives you the positions and b gives the minimum value
4 comentarios
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);
Ver también
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!