find minimum value greater than zero in the rows

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

 Accepted Answer

a(a == 0) = inf;
b = min(a,[],2);

3 Comments

I think you mean
a(a <= 0) = inf;
so that the code can handle elements of a that might be less than zero also. It's just more general since he didn't specify the range of values that a might have.
Thank you Image Analyst! I agree with you.

Sign in to comment.

More Answers (1)

Matt J
Matt J on 10 Jun 2014
Edited: Matt J on 10 Jun 2014
The min command plus
a(a<=0)=nan;

Community Treasure Hunt

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

Start Hunting!