matlab输出中"e"的含义

wan*_*wan 3 matlab notation

在matlab中,特别是在测试神经网络时,我们会看到一种特殊类型的输出.例如,3.332e-235.e-235.在输出的上下文中"e"是什么意思?

lea*_*vst 10

它是科学记数法,在哪里e是简写*10^.

您可以使用format命令在控制台中更改输出类型.例如 ...

>> x = 1.123456e5

x =

   1.1235e+05

>> format long
>> x

x =

     1.123456000000000e+05

>> format longG
>> x

x =

                  112345.6

>> format hex
>> x

x =

   40fb6d999999999a
Run Code Online (Sandbox Code Playgroud)


Jac*_*cob 6

这是科学记数法.AEB表示甲×10 .