Transform char variable to matrix
Afficher commentaires plus anciens
Hi, I have a cell variable that looks like this:

I'D like to know if there is a way to transform it into a matrix of this kind:
NewVar=[2 5; 2 3; 2 5];
Thanks
Réponse acceptée
Plus de réponses (2)
Stephen23
le 15 Fév 2020
Efficient solution:
>> C = {'002,005';'002,003';'002,005'};
>> sscanf(sprintf('%s;',C{:}),'%f,%f;',[2,Inf]).'
ans =
2 5
2 3
2 5
Sindar
le 14 Fév 2020
tmp={'002,005';'002,003';'002,005'};
NewVar=str2double(split(tmp,','))
2 commentaires
Guido Pozzi
le 14 Fév 2020
Sindar
le 14 Fév 2020
strsplit might work, but you might need to loop over cells
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!