How can I display a number with only two digits after the decimal point in MATLAB?

I would like to display a number with only two digits after the decimal point in MATLAB.

2 个评论

What is the relation to the tag "digital signal processing"? Can you explain any details concerning the question, please?
i'm sorry, i don't understand about tags, so i pick a random,
about the question,
i mean this
10/3 = 3.3333333333333333333333333333333333333
i just want matlab show 3.333
sorry my english is bad,
thx

请先登录,再进行评论。

更多回答(4 个)

For the specific case of 2 decimal places (does not work for any other number)
format bank
10/3
ans =
3.33

4 个评论

Thanks. I'm teaching a financial computing course and was looking for banker's output :-)
Be careful about rounding vs truncation. I do not know what is standard for banking purposes.
in the same scenario, could you please tell how to obtain 03.33??
x = 10/3;
sprintf('%05.2f', x)
ans = '03.33'
compose("%05.2f", x)
ans = "03.33"
num2str(x, '%05.2f')
ans = '03.33'

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

产品

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by