How to get [1 0 1 0] from '1010'
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Durga Lal Shrestha
le 29 Sep 2014
Commenté : Durga Lal Shrestha
le 30 Sep 2014
Is there any built-in function or easiest way to get [1 0 1 0] from '1010' (character array)?
I have used for loop, but is there any other way to get the results?
str = '1010';
vec = zeros(length(str),1);
for i=1:length(str)
vec(i) = str2double(str(i));
end
0 commentaires
Réponse acceptée
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Characters and Strings 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!