Rounding a decimal down
2 views (last 30 days)
Show older comments
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.
0 Comments
Accepted Answer
More Answers (2)
Vilém Frynta
on 2 Dec 2022
Edited: Vilém Frynta
on 2 Dec 2022
Example:
X = 0.143;
Y = sprintf('%.2f',X);
Y = str2double(Y)
2 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!