MicrOS
|
#include "../math.h"
Functions | |
long double | scalbnl (long double x, int n) |
Scale significand using floating-point base exponent. More... | |
long double scalbnl | ( | long double | x, |
int | n | ||
) |
Scale significand using floating-point base exponent.
The scalbnl function compute x × FLT_RADIX^n efficiently, not normally by computing FLT_RADIX^n explicitly. A range error may occur.
x | Value representing the significand. |
n | Value of the exponent. |