Rounding a decimal down

3 次查看(过去 30 天)
L'O.G.
L'O.G. 2022-12-2
评论: Emre Tas 2023-8-8
With round(x,2) I can round a number to the nearest hundredth, but how do I round down to the nearest hundredth? For example, both 0.143 and 0.147 should become 0.14.

采纳的回答

Matt J
Matt J 2022-12-2
编辑:Matt J 2022-12-2
x=0.147;
floor(x*100)/100
ans = 0.1400
  1 个评论
Emre Tas
Emre Tas 2023-8-8
Thank you for your answer, it solved my meshing problem.

请先登录,再进行评论。

更多回答(2 个)

Les Beckham
Les Beckham 2022-12-2
x = [0.143 0.147];
floor(x*100)/100
ans = 1×2
0.1400 0.1400

Vilém Frynta
Vilém Frynta 2022-12-2
编辑:Vilém Frynta 2022-12-2
Example:
X = 0.143;
Y = sprintf('%.2f',X);
Y = str2double(Y)
Y = 0.1400
Someone ahd same question before. Next time, try to Google your question before asking.
  2 个评论
Stephen23
Stephen23 2022-12-3
编辑:Stephen23 2022-12-3
It is more efficient to keep this in the numeric domain, rather than converting to text and back.
It also does not work, because SPRINTF rounds values to the nearest digit, it does not round down:
X = 0.147;
Y = sprintf('%.2f',X);
Y = str2double(Y) % Nope, definitely not rounded down.
Y = 0.1500
The answers from Matt J and Les Beckham are correct.
Vilém Frynta
Vilém Frynta 2022-12-3
True, I just reffered to someone else's answer.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by