필터 지우기
필터 지우기

Sum of nonzero vector elements

조회 수: 15 (최근 30일)
hdiba
hdiba 2016년 9월 15일
댓글: hdiba 2016년 9월 15일
Hallo everybody!
i have a vector with zeros and nonzero-entries. Now i would like to make the sum of the nonzero-elements between the zeros.example:
v= 1 2 3 0 0 0 4 5 0 6 7 0 8 9
out=6 9 13 17
in addition i would like to know the number of elements in each sum and the index of the first-sum element.
num= 3 2 2 2
indx= 1 7 10 13
can anyone help? thanks
  댓글 수: 1
José-Luis
José-Luis 2016년 9월 15일
Is this homework? What have you tried so far?
You could have a look at bwconncomp().

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 9월 15일
v= [1 2 3 0 0 0 4 5 0 6 7 0 8 9]
ii=[0 v~=0 0]
idx1=strfind(ii,[0 1])
idx2=strfind(ii,[1 0])-1
out=cell2mat(arrayfun(@(x,y) [sum(v(x:y));y-x+1;x],idx1,idx2,'un',0))
  댓글 수: 1
hdiba
hdiba 2016년 9월 15일
Thanks a lot !! perfect

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

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2016년 9월 15일
편집: Andrei Bobrov 2016년 9월 15일
v= [1 2 3 0 0 0 4 5 0 6 7 0 8 9];
b = bwlabel(v(:));
[a,ii] = unique(b,'first');
indx = ii(a ~= 0);
t = b ~= 0;
num = accumarray(b(t),1);
out = accumarray(b(t),v(t));
if you not have Image Processing Toolbox then:
t = v(:) ~= 0;
p = diff([false;t]) == 1;
indx2 = find(p);
ii = cumsum(p);
num2 = accumarray(ii,t);
out2 = accumarray(ii,v(:));

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by