How can we convert a number into a string value with the exact number of digits present in the number?
31 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Muhammad Ahsan Khan
am 20 Mai 2022
Bearbeitet: Muhammad Ahsan Khan
am 20 Mai 2022
number=0.0199155
number =
0.0199155
When I perform the following operation, it cuts off the last digit.
string=num2str(number)
string =
'0.019915'
I want it to be exactly '0.0199155', and not even '0.019915500000000'.
Please can someone help me in this case, as I have a lot of folders with different numbers and precision and later I want to read each folder name, so I need the strings to match exactly the numbers. Thank You!
2 Kommentare
Stephen23
am 20 Mai 2022
"I have a lot of folders with different numbers and precision and later I want to read each folder name, so I need the strings to match exactly the numbers."
Your approach is fragile. Why not just use DIR?
Akzeptierte Antwort
Weitere Antworten (2)
adeq123
am 20 Mai 2022
Hi,
You converted it correctly and you store the whole number in the workspace. However, you need to change the display format to see the whole number in the Command Window. Try this one
x = '9.876543218';
str2double(x);
format long;
z
2 Kommentare
adeq123
am 20 Mai 2022
Similar story though.
Try this one:
number = 0.0199155;
string=num2str(number, 10)
Walter Roberson
am 20 Mai 2022
The digits "actually present" in the number assigned are 0.0199154999999999991755483819133587530814111232757568359375
The number you are thinking of 0.0199155 cannot be exactly represented in any finite binary floating point number. It is a mathematical impossibility, for the same reason that you cannot represent exactly 1/3 in any finite decimal expansion. 0.333...333 * 3 = 0.999...999 not 1 exactly no matter how many digits you use, and for the same mathematical reason 1/10 cannot be exactly represented as a finite binary fraction.
If you need exactly 199155/10000000 represented then you will need to to switch to something like the Symbolic Toolbox.
Or you could make the string form the fundamental form and str2double when you need the numeric approximation.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Type Conversion 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!