Counting the non nan observations in a matrix by row

8 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Oleg Komarov
Oleg Komarov il 22 Ago 2011
sum(~isnan(A),2)

Più risposte (1)

Sean de Wolski
Sean de Wolski il 22 Ago 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!

Translated by