scalbn Function

Multiplies _X by FLT_RADIX to the power _Y

inline float scalbn(
   float _X,
   int _Y
) restrict(amp);
inline double scalbn(
   double _X,
   int _Y
) restrict(amp);

Parameters

  • _X
    Floating-point value

  • _Y
    Integer value

Return Value

Returns _X * (FLT_RADIX ^ _Y)

Requirements

Header: amp_math.h

Namespace: Concurrency::precise_math

See Also

Reference

Concurrency::precise_math Namespace