How can we convert a number into a string value with the exact number of digits present in the number?
31 次查看(过去 30 天)
显示 更早的评论
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 个评论
Stephen23
2022-5-20
"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?
采纳的回答
更多回答(2 个)
adeq123
2022-5-20
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 个评论
adeq123
2022-5-20
Similar story though.
Try this one:
number = 0.0199155;
string=num2str(number, 10)
Walter Roberson
2022-5-20
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!