ldexp Function

Computes a real number from the mantissa and exponent

inline float ldexp(
   float _X,
   float _Y
) restrict(amp);
inline double ldexp(
   double _X,
   double _Y
) restrict(amp);

Parameters

  • _X
    Floating-point value, mentissa

  • _Y
    Floating-point value, exponent

Return Value

Returns _X * 2^_Exp

Requirements

Header: amp_math.h

Namespace: Concurrency::precise_math

See Also

Reference

Concurrency::precise_math Namespace