Display Digits Setting: Fix or Sci

The value is rounded to the specified number of digits. Example: 200 7 14 = 400

LINE

200/7*14=

(Specifies three decimal places.)

FIX

1N6(Fix)3

(Calculation is performed internally using 15 digits.)

FIX

200/7=

FIX

*14=

The following performs the same calculation with rounding.

FIX

200/7=

(Round the value to the specified number of digits.)

FIX

10(Rnd)=

(Check rounded result.)

FIX

*14=

E-31