How can I discretize data by their sign?
조회 수: 5(최근 30일)
표시 이전 댓글
I would like to discretize data by their sign and return the index of 'alternating sign'.
For example if I have a vector:
A = [-2,-1,5,-10,7,3,-9,-12,11];
Their signs are like:
s = sign(A)
[-1,-1,1,-1,1,1,-1,-1,1]
I would like to return:
[1,1,2,3,4,4,5,5,6]
댓글 수: 0
채택된 답변
Stephen23
2022년 9월 20일
A = [-2,-1,5,-10,7,3,-9,-12,11];
B = sign(A);
C = cumsum(logical([1,diff(B)]))
댓글 수: 0
추가 답변(1개)
Chunru
2022년 9월 20일
A = [-2,-1,5,-10,7,3,-9,-12,11];
s = sign(A)
s1 = [1 diff(s)~=0]
y = cumsum(s1)
% [1,1,2,3,4,4,5,5,6]
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!