本文介绍了如何在Matlab中显示小数点后n位的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在Matlab中使用命令设置以n位小数显示?

I was wondering how to use command to set up displaying with n decimal places in Matlab?

是否必须将n限制为某些预定数量?或者可以只为n指定一个?

Must n be restricted to some predetermined numbers? Or one can just specify any for n?

感谢和问候!

推荐答案

您可以使用 SPRINTF 命令:


>> x = 1.23;
>> sprintf('%0.6f', x)

ans =

1.230000

>> x = 1.23456789;
>> sprintf('%0.6f', x)

ans =

1.234568

这篇关于如何在Matlab中显示小数点后n位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 18:12