matlab矩阵科学记数法

发布于 2024-10-02 11:41:37 字数 553 浏览 4 评论 0原文

我想知道这个问题已经有一段时间了。例如,当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

镜花水月 2024-10-09 11:41:37

您可以使用:

format shortG

有关更多详细信息,请参阅格式文档

You can use:

format shortG

See format documentation for more details.

骑趴 2024-10-09 11:41:37

如果您使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文