Filter löschen
Filter löschen

str2double/str2num

1 Ansicht (letzte 30 Tage)
Tsuwei Tan
Tsuwei Tan am 10 Mai 2018
Kommentiert: Walter Roberson am 10 Mai 2018
day='0001'; str2double(day) would give me 1 as answer, how do I get 0001 exact four number of digits for instance?

Akzeptierte Antwort

James Tursa
James Tursa am 10 Mai 2018
Bearbeitet: James Tursa am 10 Mai 2018
Floating point variables do not have leading 0's physically stored in memory (not counting the denormalized numbers of course). So 0001 and 1 are stored exactly the same in memory. If you want to display the leading 0's then you need to use a format that specifies that on print out. E.g.,
>> day = '0001'
day =
0001
>> d = str2double(day)
d =
1
>> fprintf('%04d\n',d)
0001
  2 Kommentare
Tsuwei Tan
Tsuwei Tan am 10 Mai 2018
Thank you James! it seems that I have to manually check on my code, since I have some strings like '001', '0001', and '00001' that I have to count how many digits before I fprintf them back to number.
Walter Roberson
Walter Roberson am 10 Mai 2018
day = '0001';
nd = length(day);
d = str2double(day);
fprintf('%0*d\n', nd, d);
... which leads one to wonder why you do not just print out day instead of the converted value.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help 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