...
Computes the function y = ldexp(f,e) using the math library
Discussion
Computes the funtion function Y = ldexp(F, E) using the math library. The function computes a floating point number starting with a fractional value F and an exponent E as: Y = F * 2^E. This function is the inverse of frexp().
...