Find where certain sequence of true/falses is placed inside a logical array
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Enrico Gambini
il 13 Ott 2022
Modificato: Enrico Gambini
il 13 Ott 2022
Hello!
Assume that I have the following logical array:
x=[false;false;true;true;true;true;true;false;true;true;true]'
I would like to construct a logical array which returns true at the index where the sequence [true;false;true] is found
Hence the result would look like this
result=[false;false;false;false;false;false;true;false;false;false;false]'
Hope that the question is clear, thank you!
0 Commenti
Risposta accettata
David Hill
il 13 Ott 2022
x=[false;false;true;true;true;true;true;false;true;true;true]';
f=strfind(x,[1 0 1]);
result=zeros(size(x));
result(f)=1
1 Commento
Enrico Gambini
il 13 Ott 2022
Modificato: Enrico Gambini
il 13 Ott 2022
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!