std::expm1
De 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. |
</div> </div>
Déclaré dans l'en-tête <cmath>
|
||
float expm1( float arg ); |
(depuis C++11) | |
double expm1( double arg ); |
(depuis C++11) | |
long double expm1( long double arg ); |
(depuis C++11) | |
double expm1( Integral arg ); |
(depuis C++11) | |
Calcule le e (nombre d'Euler,
2.7182818
) élevé à la puissance donnée arg
, moins 1. Cette fonction est plus précise que l'expression std::exp(arg)-1 si arg
est proche de zéro .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 std::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.
[modifier] Paramètres
arg | - | valeur du point flottant
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. |
[modifier] Retourne la valeur
earg
-1
Si le résultat est trop grand pour le type sous-jacent, une erreur d'intervalle se produit et HUGE_VAL est retourné .
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.
[modifier] Voir aussi
retours e à la puissance donnée (ex) 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. (fonction) | |
(C++11) |
logarithme naturel (à la base e) de 1, plus le nombre donné Original: natural logarithm (to base e) of 1 plus the given number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
(C++11) |
retours 2 élevé à la puissance donnée (2x) 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. (fonction) |