How to extract lengths of sequences from a binary vector?

조회 수: 1 (최근 30일)
Mr M.
Mr M. 2018년 2월 27일
편집: Stephen23 2018년 2월 27일
For example, I have x = [0 0 1 1 1 0 1 0 0 0 0 1 1 0]; and I need 2,3,1,1,4,2,1. Are there any simple way to get this?

답변 (2개)

Matt J
Matt J 2018년 2월 27일
편집: Matt J 2018년 2월 27일
If you have the Image Processing Toolbox
S=regionprops(boolean(x),'Area')
sequenceLengths=[S.Area],

Stephen23
Stephen23 2018년 2월 27일
편집: Stephen23 2018년 2월 27일
>> x = [0 0 1 1 1 0 1 0 0 0 0 1 1 0];
>> idx = find([1,diff(x),1]);
>> idx(2:end)-idx(1:end-1)
ans =
2 3 1 1 4 2 1

Community Treasure Hunt

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

Start Hunting!

Translated by