Extract group of identical values from an array

2 ビュー (過去 30 日間)
Sugyani Mahapatra
Sugyani Mahapatra 2017 年 7 月 7 日
コメント済み: Sugyani Mahapatra 2017 年 7 月 7 日
I have the array
a = [0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1];
I want to extract the first and last index where a==1 as a group
o/p: [4 6; 12 15; 18 19];
Is there any efficient way to do this?
  1 件のコメント
Adam
Adam 2017 年 7 月 7 日
編集済み: Adam 2017 年 7 月 7 日
firstIndices = find( diff(a) == 1) + 1;
lastIndices = find( diff(a) == -1);
will give you most of what you need, but you would need to make a special case for the last index which it will not find, and obviously it is more efficient to do the diff just once, etc. Shaping the results into the format you want shouldn't be difficult.

サインインしてコメントする。

採用された回答

José-Luis
José-Luis 2017 年 7 月 7 日
If you have the image-processing toolbox.
  1 件のコメント
Sugyani Mahapatra
Sugyani Mahapatra 2017 年 7 月 7 日
Thank you. It works.

サインインしてコメントする。

その他の回答 (1 件)

C.J. Harris
C.J. Harris 2017 年 7 月 7 日
a = [0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1];
nStart = find(diff([0 a 0]) == 1);
nEnd = find(diff([0 a 0]) == -1) - 1;
nResult = [nStart' nEnd'];

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by