How to count the number of times that values changes?
조회 수: 16 (최근 30일)
이전 댓글 표시
A=[1 1 1 2 1 3 3 1 1]' I want to get:
B=[NaN 0 0 1 2 3 3 4 4]'
The second and third values of B are 0 because A doesn't change value. Fourth value is 1 because A changes value. Fifth value is 2 because A changes value again. And so on...
댓글 수: 0
채택된 답변
추가 답변 (1개)
Mario Malic
2021년 1월 9일
편집: Mario Malic
2021년 1월 9일
Hello,
This should do the trick.
B = [NaN; cumsum(diff(A) ~= 0)]';
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!