how to get character from an array using another logical array?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mithushan Kanthasamy
le 18 Sep 2020
Commenté : Mithushan Kanthasamy
le 18 Sep 2020
how to get character from an array using another logical array?
for example
V = '1b.%291x g'
'yig&aaSgwa'
'tqtbbs!?R!'
logicalVec = [ 1 0 1 0 1 0 1 0 1 1; 0 1 1 0 1 0 0 0 1 1; 1 0 1 0 0 1 1 1 0 1]
0 commentaires
Réponse acceptée
Turlough Hughes
le 18 Sep 2020
A slight modification on your inputs:
V = ['1b.%291x g'; 'yig&aaSgwa'; 'tqtbbs!?R!'];
logicalVec = logical([ 1 0 1 0 1 0 1 0 1 1; 0 1 1 0 1 0 0 0 1 1; 1 0 1 0 0 1 1 1 0 1]);
You can then use a logical index to find the characters corresponding to true values:
V(logicalVec).'
3 commentaires
Walter Roberson
le 18 Sep 2020
To extract "across" instead of "down",
Vt = V.';
Vt(logicalVec.')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!