Is it possible to show numbers in non-engineering format in MATLAB?

谁都会走 提交于 2019-11-26 23:37:59

问题


I have some large floating point numbers such as 1243564832.75 in MATLAB. MATLAB changes the format to 1.2435e09 or if I use long format: 1.2435648e09 or something like that.

Is there any way I can display the numbers in their non-engineering format (1243564832.75)?


回答1:


Call the following command

format longG

Then the display should be "fixed"



来源:https://stackoverflow.com/questions/3999205/is-it-possible-to-show-numbers-in-non-engineering-format-in-matlab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!