In App Designer, how can I ensure that the values displayed on the UI do not appear in scientific notation?

1 次查看(过去 30 天)
For example, I have a field called app.Profile.Value. Large numbers are often converted to scientific notation. How do I force all values of this variable to be displayed properly, i.e., 1234, instead of 1.234*10^3?

采纳的回答

Image Analyst
Image Analyst 2025-7-2
编辑:Image Analyst 2025-7-2
Where or how are you displaying them? If you're using fprintf or sprintf, use %.3f or %g in your format specifier. If you're just having them echo to the command window, try
> format longg
  5 个评论
Image Analyst
Image Analyst 2025-7-7
Change the ValueDisplayFormat string to %.4f instead of %.4g. If you want integers, use %.0f but that will display integers but the underlying number will still be floating point. You can check the RoundFractionalValues if you want the underlying values to also be integers.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by