System Parameters

'NR'

No Intermediate Rounding on Division

Description

Prevents intermediate rounding on division.

Note:
This only affects division, not other operations such as multiplication.

Default

Off - Intermediate rounding is performed.

See Also

'RN'= Rounding Control

Example

With 'NR' Off:

set_param 'RN'=4,-'NR'
print 5/3
a=5/3
print a

1.67
1.67

With 'NR' On:

set_param 'RN'=4,'NR'
print 5/3
a=5/3
print a

1.66666666666667
1.67