필터 지우기
필터 지우기

unique function but with repeated groups

조회 수: 1 (최근 30일)
Haneya Qureshi
Haneya Qureshi 2021년 4월 24일
답변: Haneya Qureshi 2021년 4월 24일
I have= [1 1 1 5 5 5 1 1]
I want first indices of each repeat values: [1 4 7]
i.e., the first group of repeated 1's start at index 1, the second group of repeated 5's start at index 4 and the third group of repeated 1s start at index 7
I am trying unique function, but it misses out the last group of 1s.
[~,ic,~]=unique([1 1 1 5 5 5 1 1], 'stable')
gives me [1 4] and not [1 4 7]

채택된 답변

Haneya Qureshi
Haneya Qureshi 2021년 4월 24일
Figured it out!
G= [1 1 1 5 5 5 1 1]
temp = [0, diff(G(:)')==0,0];
index = strfind(temp,[1 0]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by