std::log1p
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. |
Déclaré dans l'en-tête <cmath> | ||
float log1p(float arg ); | (depuis C++11) | |
double log1p(double arg ); | (depuis C++11) | |
longdouble log1p(longdouble arg ); | (depuis C++11) | |
double log1p( Integral arg ); | (depuis C++11) | |
Calcule le naturel (base e) logarithme de 1+arg. Cette fonction est plus précise que l'expression std::log(1+arg) si
arg
est proche de zéro .Original:
Computes the natural (base e) logarithm of 1+arg. This function is more precise than the expression std::log(1+arg) 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
ln(1+arg)
Erreur de domaine se produit si
arg
est négatif. NAN est retourné dans ce cas .Original:
Domain error occurs if
arg
is negative. NAN is returned in that case.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.
Erreur d'intervalle se produit si
arg
est 0. -HUGE_VAL est retourné dans ce cas . Original:
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
calcule naturel (base e) logarithme (de base e) (ln(x)) Original: computes natural (base e) logarithm (to base e) (ln(x)) 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 e à la puissance donnée, moins un (ex-1) Original: returns e raised to the given power, minus one (ex-1) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
calcule commune (base 10) Logarithme (log10(x)) Original: computes common (base 10) logarithm (log10(x)) 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 en base 2 d'un nombre donné Original: base 2 logarithm of 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) |