What is the Small “e” in Scientific Notation / Double in Matlab

自闭症网瘾萝莉.ら 提交于 2019-12-02 08:43:10

问题


when I calculate a very small number, matlab gives
1.12345e-15 What is this?
I can interpret it as 1.12345*10^(-15) or its 1.12345*e^(-15) I am in very hurry. Sorry for the stupid question.


回答1:


e represents scientific notation as Rahul said but it is base 10, not base e.

Run the following code to confirm.

1e1

It gives you

ans = 10



回答2:


e represents exponential. Its the scientific notation of writing numbers.

The base is 10. For example:

1e2 =100
1e-2= 0.01


来源:https://stackoverflow.com/questions/29731027/what-is-the-small-e-in-scientific-notation-double-in-matlab

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