Rounding a decimal down
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
L'O.G.
am 2 Dez. 2022
Kommentiert: Vilém Frynta
am 3 Dez. 2022
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Vilém Frynta
am 2 Dez. 2022
Bearbeitet: Vilém Frynta
am 2 Dez. 2022
Example:
X = 0.143;
Y = sprintf('%.2f',X);
Y = str2double(Y)
2 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!