find minimum value greater than zero in the rows

91 visualizaciones (últimos 30 días)
Bathrinath
Bathrinath el 10 de Jun. de 2014
Comentada: Andrei Bobrov el 10 de Jun. de 2014
a=[9,32,7,0,0,0,0,0;15,32,9,0,0,0,0,0;25,42,0,0,0,0,0,0];i have to find out minimum value in 'a' which should be greater than zero.my answer has to be b=[7;9;25].suggest some points

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 10 de Jun. de 2014
a(a == 0) = inf;
b = min(a,[],2);
  3 comentarios
Bathrinath
Bathrinath el 10 de Jun. de 2014
Thank you sir
Andrei Bobrov
Andrei Bobrov el 10 de Jun. de 2014
Thank you Image Analyst! I agree with you.

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 10 de Jun. de 2014
Editada: Matt J el 10 de Jun. de 2014
The min command plus
a(a<=0)=nan;

Categorías

Más información sobre Logical 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