Clib.ldexp()
syntax: |
Clib.ldexp(mantissa, exp) |
where: |
mantissa - mantissa to work with
exp - exponent used with a mantissa.
|
return: |
number - mantissa * 2 ^ exp.
|
description: |
This method is the inverse of Clib.frexp() and calculates a floating point number using the following equation:
mantissa * 2 raised to the power of exp.
|
see: |
|