kennen:lib:logb
Inhaltsverzeichnis
logb()
#include
<cmath>
double logb (double x)
Liefert den ganzzahligen Logarithmus von x
zur Basis 2 für x>0.
Parameter
x | positiver, reeller Logarithmand |
Ergebnis
Rückgabewert: trunc(log2(x))
.
Siehe auch
Beispiel
- logb.cpp
#include <cmath> #include <iostream> int main() { std::cout << "logb(8.0) = " << std::logb(8.0) << '\n'; return 0; }
kennen/lib/logb.txt · Zuletzt geändert: 2012-04-11 17:23 von 127.0.0.1