필터 지우기
필터 지우기

count a vector with continuous non zero elements

조회 수: 3 (최근 30일)
Sam
Sam 2014년 5월 16일
편집: the cyclist 2014년 5월 16일
Is there a way to count non-zero elements in vector x below x=[0 1 1 1 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 0 1]
so that the output y will be y=[3 5 7 1]

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 5월 16일
x=[0 1 1 1 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 0 1]
ii=strfind([0 x 0],[0 1])
jj=strfind([0 x 0],[1 0])
out=jj-ii
  댓글 수: 2
Sam
Sam 2014년 5월 16일
thanks Azzi, can you explain to me what is this doing?
Azzi Abdelmalek
Azzi Abdelmalek 2014년 5월 16일
ii=strfind([0 x 0],[0 1]) % find the indices corresponding to the switch from 0 to 1

댓글을 달려면 로그인하십시오.


the cyclist
the cyclist 2014년 5월 16일
편집: the cyclist 2014년 5월 16일
Here's a similar approach:
y = diff(find([0 x 0]==0))-1;
y(y==0) = []
The first line identifies the zero locations, and then the "distance" between them. This distance is the length of the string of ones.
The second line removes the instances where that distance is zero (i.e. no 1's), since you are not interested in those.
Note that the reason you need to do this operation on "[0 x 0]" instead of just x is to be able to identify a string of ones at the beginning and end.

카테고리

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