In App Designer, how can I ensure that the values displayed on the UI do not appear in scientific notation?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leon
el 2 de Jul. de 2025
Comentada: Leon
el 7 de Jul. de 2025
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?
0 comentarios
Respuesta aceptada
Image Analyst
el 2 de Jul. de 2025
Editada: Image Analyst
el 2 de Jul. de 2025
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 comentarios
Image Analyst
el 7 de Jul. de 2025
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.

Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!