Inhaltsverzeichnis

scalbn()

#include <cmath>

double scalbn (double x, int n) 
double scalbln (double x, long int n) 

Liefert $x\cdot b^n$ mit $b$ = FLT_RADIX.

Parameter

x zu skalierende Gleitkommazahl
n Exponent

Ergebnis

Rückgabewert: $x\cdot b^n$ (ohne Aufruf von pow(b,n)).

Siehe auch

ilogb(), ldexp().

Beispiel

scalbn.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "6 = " << std::scalbn(1.5, 2) << '\n'; // wenn FLT_RADIX == 2
}