Sum only consecutive positive numbers and place the sum in a new vector in specific positions
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi!
I have this variable P1 (attached) and i want to make the sum of ONLY consecutive positive values and place the sum in a new vector (out) in the position that you can see in Figure. In there is only one value you can place it in the same position of P1, otherwise, place it in the lowest consecutive positive position. For the other values of out i want zero.
I tried with this but it is not doing what i want...
Thanks in advance!!!
lo = P1 > 0;
h5 = cumsum(diff([0;lo(:)]) == 1).*lo(:);
out = accumarray(h5 + 1,P1);
답변 (1개)
Thiago Henrique Gomes Lobato
2020년 3월 22일
Try this:
lo = P1 > 0;
Dfference = diff([lo(:);0]);
Ends = find(Dfference==-1); % -1 are the positions where a sequence ends
Start = find(Dfference==1)+1; % 1 are the positions where a sequence starts -1
% loop only over the founded sequences
out = zeros(size(P1));
for idx=1:length(Start)
out(Ends(idx)) = sum(P1(Start(idx):Ends((idx))));
end
댓글 수: 7
Thiago Henrique Gomes Lobato
2020년 4월 5일
Add those changes:
if length(Ends)>length(Start)
Start = [Ends(1);Start];
end
SP = zeros(size(P1));
for idx=1:length(Start)
End = min(Ends(idx)+2,length(P1));
SP(Ends(idx):End) = sum(P1(Start(idx):Ends((idx)))); % this is the part of code you missed in the previous answer
end
참고 항목
카테고리
Help Center 및 File Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!