Converting character matrix to number

I have a character matrix A that I want to convert to numbers B, but it doesn't work with str2num. Any tips? I tried B = str2num(A) but gives B = [].
A = ['02';'06';'07'];
B = [2;6;7];

2 comentarios

Stephen23
Stephen23 el 3 de Mzo. de 2021
Editada: Stephen23 el 3 de Mzo. de 2021
Your example shows a character matrix, not a "vertical string vector" nor a "character vector".
This is a vertical string vector:
S = ["02";"006";"4"]
S = 3×1 string array
"02" "006" "4"
This is a character vector:
V = '0001'
V = '0001'
whos
Name Size Bytes Class Attributes S 3x1 258 string V 1x4 8 char
John Taylor
John Taylor el 3 de Mzo. de 2021
Ok, thanks. Character matrix then.

Iniciar sesión para comentar.

Respuestas (1)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Productos

Versión

R2020a

Preguntada:

el 3 de Mzo. de 2021

Comentada:

el 3 de Mzo. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by