how to convert a string contains number seperated by commas into a matrix of numbers

1 visualizzazione (ultimi 30 giorni)
if a string s='6,7,8,9,19' how can i convert it as matrix=[6 7 8 9 19]

Risposta accettata

KSSV
KSSV il 24 Ott 2016
Modificato: KSSV il 24 Ott 2016
s='6,7,8,9,19' ;
matrix = str2num(s);

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by