Provided by:
manpages-de-dev_0.5-2ubuntu1_all 
BEZEICHNUNG
expm1,log1p - die Exponentialfunktion -1, die Logirthmusfunktion +1
ÜBERSICHT
#include <math.h>
double expm1 (double x);
double log1p (double x);
BESCHREIBUNG
Die Funktion expm1() liefert den Wert von exp(x) -1 zurück. Dabei wird
der Wert auch dann exakt berechnet, wenn x nahe bei 0 liegt. In diesem
Fall würden 2 fast gleiche Zahlen subtrahiert.
Die Funktion log1p() liefert den Wert von log(1 + x) zurück. Dabei ist
das Ergebnis auch dann exakt, wenn x nahe bei 0 liegt.
KONFORM ZU
BSD
SIEHE AUCH
exp(3), log(3).