Question about single digits.

Hi everyone. Is there any function that converts "complex" number for example [123] to constituent elements [1 2 3] ?

 Akzeptierte Antwort

Jonathan Sullivan
Jonathan Sullivan am 13 Jul. 2012

1 Stimme

Its not the most elegant, but this works:
A = str2num(num2str(123)')'

Weitere Antworten (1)

Artyom
Artyom am 13 Jul. 2012

0 Stimmen

Thanks. Maybe you know how to do the reverse process - from [5] [5] to [55]?

2 Kommentare

F.
F. am 13 Jul. 2012
A = [ 1 2 3 ];
S = sum( A .* ( 10 ^ (numel(A)-1:-1:0 ) ) )
F.
F. am 13 Jul. 2012
;-)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by