Counting the non nan observations in a matrix by row

13 vues (au cours des 30 derniers jours)
joseph Frank
joseph Frank le 22 Août 2011
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?

Réponse acceptée

Oleg Komarov
Oleg Komarov le 22 Août 2011
sum(~isnan(A),2)

Plus de réponses (1)

Sean de Wolski
Sean de Wolski le 22 Août 2011
sum(A==A,2);
Variant

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by