Taking Numerical Values From Char Array

1 Ansicht (letzte 30 Tage)
tinkyminky93
tinkyminky93 am 6 Jun. 2022
Kommentiert: Fangjun Jiang am 6 Jun. 2022
Hello,
I have a char array like
'123456'
'123123'
when I use str2num, it gives me squares, not numerical values.
'□□□□□□'
'□□□□□□'
Can you help me to get these values numerically? Thank you.
  1 Kommentar
Fangjun Jiang
Fangjun Jiang am 6 Jun. 2022
What is your actual "char array" data? Use a format that others can copy&paste and use directly in MATLAB.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 6 Jun. 2022
a=['123456'
'123123']
a = 2×6 char array
'123456' '123123'
str2num(a)
ans = 2×1
123456 123123

Weitere Antworten (0)

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by