MATLAB能不能使结果不用科学计数法表示啊?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MATLAB能不能使结果不用科学计数法表示啊?相关的知识,希望对你有一定的参考价值。

或者在MATLAB中是科学计数法,怎么样使得复制到excel里边之后为普通计数?

参考技术A

可以使用:format short g 或者是 format long g

format SHORTG    Best of fixed or floating point format with 5 

                       digits.

format LONGG     Best of fixed or floating point format with 15 

                       digits for double and 7 digits for single.

参考技术B 设置EXCEL的单元格格式,格式—>单元格—>数字,分类里面选择“数值” 参考技术C 可以使用:format
short
g 或者是 format
long
g
format
SHORTG
Best
of
fixed
or
floating
point
format
with
5
digits.
format
LONGG
Best
of
fixed
or
floating
point
format
with
15
digits
for
double
and
7
digits
for
single.
参考技术D 可以使用:format
short
g 或者是 format
long
g
format
SHORTG
Best
of
fixed
or
floating
point
format
with
5
digits.
format
LONGG
Best
of
fixed
or
floating
point
format
with
15
digits
for
double
and
7
digits
for
single.
第5个回答  2019-02-23 % csvwrite('NewResult_test.csv',NewData);
%csvwrite writes a maximum of five significant digits. For greater
%precision, call DLMWRITE with a precision argument.
dlmwrite('NewResult_test.csv',NewData,'delimiter',',','precision','%10.5f');

js 怎么把小数的科学计数法转换成数字 如:1

参考技术A 科学计数法,就是把一个数表示为“由一位整数和几位小数组成的数并与一个10的几次方相乘的数”。例:125.4,表示为1.254*10^20.0457,表示为4.57*10^(-2)

以上是关于MATLAB能不能使结果不用科学计数法表示啊?的主要内容,如果未能解决你的问题,请参考以下文章

如何使java中double类型不以科学计数法表示

如何使java中double类型不以科学计数法表示

如何使java中double类型不以科学计数法表示

如何让Matlab不用科学计数法显示很大的整数

怎么将科学计数法

MATLAB中怎样将结果不以科学计数法显示?