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