Section 3: Functions42
Keys Function Input Value(s) Result
f OCT  Convert decimal integer to octal (base 8). x10 a decimal integer of magnitude less than 107374182410 x8 in X
       
f-1 OCT  Convert octal integer to decimal (base 10). x8 an octal integer   x10 in X
       
fINT Truncate to signed integer. ±integer.fraction in X ±integer.0 in X
       
f-1INT Truncate to signed fraction. ±integer.fraction in X ±0.fraction in X
       
gABS Absolute value. ±x If –x, change its sign; otherwise, no change
       
   As an additional feature, the “octal to decimal” conversion will accept non-octal arguments containing the digits 8 or 9. A non-octal number such as 998 will be interpreted as (9 × 82) + (9 × 8) + 8 = 656
  998 f-1 OCT 65610
  656 f OCT 12208
Figure 3-2. Conversions of x