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

前端 未结 1 1606
自闭症患者
自闭症患者 2020-12-07 04:05

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.2

相关标签:
1条回答
  • 2020-12-07 04:40

    Call the following command

    format longG
    

    Then the display should be "fixed"

    0 讨论(0)
提交回复
热议问题