| Rounding Mode | Meaning |
| nearest | round to the nearest possible value, with ties resolved by rounding to the nearest even |
| 0 | round towards zero |
| infinity | round towards positive infinity |
| -infinity | round towards negative infinity |
| > | Digits:=10: # ist auch voreingestellt |
| > | a:=1.2345675; |
| > | b:=1.2345665; |
| a:=1.2345675 | |
| b:=1.2345665 |
| > | Digits:=7; |
| > | evalf(a); |
| > | evalf(b); |
| Digits := 7 | |
| 1.234568 | |
| 1.234566 |
Letzte Bearbeitung: 14. April 2006