Inhaltsverzeichnis

ldexp()

#include <cmath>

double ldexp (double x, int n) 

Liefert $x\cdot 2^n$.

Parameter

x zu zerlegende Gleitkommazahl
n Exponent

Ergebnis

Rückgabewert: x * pow(2, n).

Siehe auch

frexp().

Beispiel

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