Using string() on double values without automatic rounding?

7 次查看(过去 30 天)
Hello,
When i use string() with double values, the number is converted to a string where the number is rounded to four decimals, even when there are more decimals in the original double value. Image:
I am currently writing a conversion script where i need the extra decimals. Is it possible to disable this automatic rounding?
Thank you.

采纳的回答

Matt J
Matt J 2023-5-8
even when there are more decimals in the original double value
There are no more decimals in the original double value. A double value can only have 15 digits of precision.
  3 个评论
Matt J
Matt J 2023-5-8
编辑:Matt J 2023-5-8
You could use num2str,
string( num2str(123.123123123,'%.9f') )
ans = "123.123123123"

请先登录,再进行评论。

更多回答(1 个)

Stephen23
Stephen23 2023-5-9
Rather than slow NUM2STR and then STRING, for a scalar the simpler and more efficient approach is to just call SPRINTF:
sprintf("%.9f",123.123123123)
ans = "123.123123123"
For non-scalar values use COMPOSE:

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by