Enumerate array of zeros and ones

1 view (last 30 days)
Erick Carreño
Erick Carreño on 18 Apr 2018
Answered: Walter Roberson on 18 Apr 2018
hi, i have an array [0000100111011111110000001111110000011100] and i need obtein all 1s that are before a 0 (including the first 0 after 1) belong to a set... then until a new 1 appears it will belong to another set (until a 0 appears) [0000100111011111110000001111110000011100]-> [----11-222233333333-----4444444----55550] any advice?

Answers (1)

Walter Roberson
Walter Roberson on 18 Apr 2018
A = '0000100111011111110000001111110000011100';
starts = strfind(['0' A], '01');
stops = strfind(A, '10');

starts is now the index of all the beginnings of runs of 1's, and stop is now the index of all of the ends of runs of 1's. The length of each run is (stops-starts+1)

You can do the same thing with numeric arrays. If A was [0 0 0 0 1 0 0 1 etc] then you could use

starts = strfind([0 A], [0 1]);
stops = strfind(A, [1 0]);

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!