how to convert a string into matrix of specified dimension

4 vues (au cours des 30 derniers jours)
lafnath p
lafnath p le 24 Oct 2016
Réponse apportée : KSSV le 24 Oct 2016
if string str='1,2,3,6,7,9,88,89,99' how it can be converted into a matrix as matrix=[1 2 3;6 7 9;88 89 99]

Réponses (1)

KSSV
KSSV le 24 Oct 2016
str='1,2,3,6,7,9,88,89,99' ;
s = str2num(str) ;
matrix = reshape(s,3,[])'

Catégories

En savoir plus sur Numeric Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by