共用方式為


ldexp 函式

利用指定之尾數和指數計算出實數。

inline float ldexp(
   float _X,
   int _Exp
) restrict(amp);
inline double ldexp(
   double _X,
   double _Exp
) restrict(amp);

參數

  • _X
    浮點值、尾數

  • _Exp
    整數值, 指數

傳回值

傳回 _X * 2^_Exp

需求

**標頭:**amp_math.h

命名空間: Concurrency::precise_math

請參閱

參考

Concurrency::precise_math 命名空間