[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Return (2 to the power p) times x
Source position: math.pp line 378
function ldexp( |
x: Float; |
const p: Integer |
):Float; |
Ldexp returns (2 to the power p) times x.
None.
|
Return natural logarithm of 1+X |
|
|
Return 10-Based logarithm. |
|
|
Return 2-based logarithm |
|
|
Return N-based logarithm. |
Program Example19; { Program to demonstrate the ldexp function. } Uses math; begin writeln(ldexp(2,4):8:4); writeln(ldexp(0.5,3):8:4); end.