Name:

mantissa returns the integer mantissa of a number.

Library name:

sollya_obj_t sollya_lib_mantissa(sollya_obj_t)

Usage:

mantissa(x) : constant -> integer

Parameters:

Description:

Example 1:

   > a=round(Pi,20,RN);
   > e=exponent(a);
   > m=mantissa(a);
   > m;
   411775
   > a-m*2^e;
   0
See also: exponent, precision
Go back to the list of commands