expm1
Aus cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <math.h> | ||
float expm1f(float arg ); | ||
double expm1(double arg ); | ||
longdouble expm1l(longdouble arg ); | ||
Berechnet den e (Eulersche Zahl,
2.7182818
) angehoben, um die Macht gegeben arg
, minus 1. Diese Funktion ist genauer als der Ausdruck exp(arg)-1 wenn arg
nahe Null ist .Original:
Computes the e (Euler's number,
2.7182818
) raised to the given power arg
, minus 1. This function is more accurate than the expression exp(arg)-1 if arg
is close to zero.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten]Parameter
arg | - | Floating-Point-Wert Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten]Rückgabewert
earg
-1
Wenn das Ergebnis zu groß für den zugrunde liegenden Typ, tritt Bereich Fehler-und HUGE_VAL zurückgegeben .
Original:
If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten]Siehe auch
Renditen e an die angegebene Leistung (ex) angehoben Original: returns e raised to the given power (ex) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
(C99) | Renditen 2 an die angegebene Leistung (2x) angehoben Original: returns 2 raised to the given power (2x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |
C++ documentation for expm1 |