次の方法で共有


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 名前空間