Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

finding logical index greater than 25

조회 수: 1 (최근 30일)
Systematically Neural
Systematically Neural 2018년 2월 22일
마감: Stephen23 2018년 2월 22일
I am looking to find repeats greater than 25 in vector of logical indexing. Does anyone have any suggestions or ideas?

답변 (1개)

Guillaume
Guillaume 2018년 2월 22일
편집: Guillaume 2018년 2월 22일
sequencestarts = [1, find(diff(yourlogicalvector))]; %assuming a row vector
sequencelengths = diff([sequencestarts, numel(yourlogicalvector)+1]);
wantedstarts = sequencestarts(sequencelengths > 25)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by