how do i count NaNs in a vectors or array??

조회 수: 2 (최근 30일)
trailokya
trailokya 2015년 2월 1일
답변: Matt J 2015년 2월 1일
Sir I have a vector say
A=[5,5,6,NaN,NaN,8,10,5,7,3,NaN,11,5,3,8,9,7,NaN,NaN,NaN,NaN,NaN]
and i want to count the number of NaNs in between the numbers. The result should be[2,1,5]. how can I do it sir? please help

채택된 답변

Matt J
Matt J 2015년 2월 1일
편집: Matt J 2015년 2월 1일
If you have the Image Processing Toolbox,
S=regionprops(isnan(A),'Area');
result=[S.Area];

추가 답변 (1개)

Matt J
Matt J 2015년 2월 1일
Using SplitVec ( Download ),
C=SplitVec(isnan(A),'equal',@sum);
result=nonzeros([C{:}]).';

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by