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

1 visualización (últimos 30 días)
if a string s='6,7,8,9,19' how can i convert it as matrix=[6 7 8 9 19]

Respuesta aceptada

KSSV
KSSV el 24 de Oct. de 2016
Editada: KSSV el 24 de Oct. de 2016
s='6,7,8,9,19' ;
matrix = str2num(s);

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by