Sum of nonzero vector elements
古いコメントを表示
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
2016 年 9 月 15 日
Is this homework? What have you tried so far?
採用された回答
その他の回答 (1 件)
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(:));
カテゴリ
ヘルプ センター および File Exchange で Region and Image Properties についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!