Counting the non nan observations in a matrix by row

13 ビュー (過去 30 日間)
joseph Frank
joseph Frank 2011 年 8 月 22 日
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?

採用された回答

Oleg Komarov
Oleg Komarov 2011 年 8 月 22 日
sum(~isnan(A),2)

その他の回答 (1 件)

Sean de Wolski
Sean de Wolski 2011 年 8 月 22 日
sum(A==A,2);
Variant

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by