how to count no of zeros between ones
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Walter Roberson
il 9 Lug 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
Vedere anche
Categorie
Scopri di più su Operators and Elementary Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!