ldexpf 函数 (fast_math)

利用尾数和指数计算实数

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

参数

  • _X
    浮点值,尾数

  • _Exp
    整数指数。

返回值

返回 _X * 2^_Exp

要求

**头文件:**amp_math.h

**命名空间:**Concurrency::fast_math

请参见

参考

Concurrency::fast_math 命名空间