Counting the non nan observations in a matrix by row

13 views (last 30 days)
Hi,
I have a matrix for which I want to compute the number of non-nan observations for each row without running a loop. is this possible?

Accepted Answer

Oleg Komarov
Oleg Komarov on 22 Aug 2011
sum(~isnan(A),2)

More Answers (1)

Sean de Wolski
Sean de Wolski on 22 Aug 2011
sum(A==A,2);
Variant

Community Treasure Hunt

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

Start Hunting!