如何舍入到某个浮点精度?

发布于 2024-09-04 04:40:28 字数 234 浏览 10 评论 0原文

我认为这是一个简单的问题。我希望:

a = 1.154648126486416;

成为:

a = 1.154;

而不是:

a = 1.15000000000;

在不使用 format('bank') 的情况下如何做到这一点。

I think it's a simple question. I want:

a = 1.154648126486416;

to become:

a = 1.154;

and not:

a = 1.15000000000;

How do I do that without using format('bank').

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

薄暮涼年 2024-09-11 04:40:28

你可以这样做:

a = floor(a*1000)/1000;

You could do this:

a = floor(a*1000)/1000;
一指流沙 2024-09-11 04:40:28

基于 @gnovice 的答案,您可以将输出格式化为字符串以消除多余的零。请参阅 sprintf所有格式选项的文档。

str=sprintf('The result is %1.3f.',a);
disp(str)

将显示“结果是 1.154”。在命令提示符下。或者将字符串写入文件等。

Building on @gnovice's answer, you can format the output as a string to get rid of the extra zeros. See the sprintf documentation for all the formatting options.

str=sprintf('The result is %1.3f.',a);
disp(str)

will show "The result is 1.154." in the command prompt. Or write the string to file, etc., etc.

苏大泽ㄣ 2024-09-11 04:40:28
a = 1.154648126486416;
% desired precision 
b = -3;
% your answer
ans = floor(a*10^(-b))/(10^(-b));

答案是 1.1540

如果您不关心其余数字,那么这很好,但如果您确实关心,那么您只需将“floor”更改为“round”即可。

ans = round(a*10^(-b))/(10^(-b));

答案是 1.1550

a = 1.154648126486416;
% desired precision 
b = -3;
% your answer
ans = floor(a*10^(-b))/(10^(-b));

The answer is 1.1540

this is good if you don't care about the rest of digits but if you do care then you just have to simply change "floor" to "round".

ans = round(a*10^(-b))/(10^(-b));

The answer is 1.1550

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