ldexpf 函数

利用指定的尾数和指数计算实数。

inline float ldexpf(
   float _X,
   int _Exp
) restrict(amp);

参数

  • _X
    浮点值,尾数

  • _Exp
    整数值,指数

返回值

返回 _X * 2^_Exp

要求

**头文件:**amp_math.h

**命名空间:**Concurrency::precise_math

请参见

参考

Concurrency::precise_math 命名空间