Counting the non nan observations in a matrix by row

24 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

Categories

Find more on Numeric Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!