Convert string array to numerical vector

176 visualizaciones (últimos 30 días)
John Taylor
John Taylor el 3 de Mzo. de 2021
Respondida: Cris LaPierre el 3 de Mzo. de 2021
I have numbers as string array A that I'd like to convert to numerical vector B:
A = ["01";"04";"12"];
B = [1; 4; 12];
I've tried with str2num but it seems to proceed only with string scalars rather than vectors.
Any tips without loop?

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 3 de Mzo. de 2021
A = ["01";"04";"12"];
B = str2double(A)
B = 3×1
1 4 12

Más respuestas (0)

Categorías

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

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by