how to count no of zeros between ones
3 views (last 30 days)
Show older comments
suppose my array is
a=[0 0 1 1 1 1 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0]
output i want is
[2 4 4 1 2]
0 Comments
Accepted Answer
Walter Roberson
on 9 Jul 2021
a=[0 0 1 1 1 1 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0]
starts = strfind([1 a], [1 0])
stops = strfind([a 1], [0 1])+1
stops - starts
See Also
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!