matlab输出中“e”的含义

时间:2012-10-08 16:27:39

标签: matlab notation

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

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:6)

这是scientific notation AeB 表示 A x 10 B