matlab矩阵科学记数法
我想知道这个问题已经有一段时间了。例如,当 Matlab 打印矩阵 A 时,
A
它有时会以科学记数法出现,例如
A =
1.0e+03 *
0 0 0.0070 0.0080 0.0030 0.0010
0 0.0030 -0.0460 0.0400 -0.0930 0.1800
0.0010 -0.0530 -0.0140 -0.0620 0.0790 -1.2360
0.0020 0.0009 -0.0032 0.0016 0.0023 -1.4180
0.0070 -0.0000 -0.0006 -0.0000 0 0
有人知道如何使其打印普通浮点数吗?我尝试过短格式、长格式、短e格式、长e格式,但它们都不起作用。有些人会更改格式,以便科学记数法位于各个条目中,但实际上这些数字打印出来并不那么荒谬......
I've wondered about this for a while now. When Matlab prints the matrix A, for instance, with
A
it sometimes appears in scientific notation such as
A =
1.0e+03 *
0 0 0.0070 0.0080 0.0030 0.0010
0 0.0030 -0.0460 0.0400 -0.0930 0.1800
0.0010 -0.0530 -0.0140 -0.0620 0.0790 -1.2360
0.0020 0.0009 -0.0032 0.0016 0.0023 -1.4180
0.0070 -0.0000 -0.0006 -0.0000 0 0
Does anyone know how to make it print normal floating point numbers? I've tried format short, format long, format short e, format long e, but none of them work. Some switch the formatting so that the scientific notation is within individual entries, but really these numbers aren't that ridiculous to just print out...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用:
有关更多详细信息,请参阅格式文档。
You can use:
See format documentation for more details.
如果您使用 fprintf,则可以在格式中使用 %f ,同时还可以对您需要的小数位数进行进动,例如 %.2f ,它始终只给出两位小数小数点后
if you are usng fprintf you can use %f in the Format with also giving precession to the number of decimal Points you Need like %.2f which always give only two decimal number after decimal