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 <math.h> | ||
float log1pf(float arg ); | ||
double log1p(double arg ); | ||
longdouble log1pl(longdouble arg ); | ||
Calcule le naturel (base e) logarithme de 1+arg. Cette fonction est plus précise que l'expression 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 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) | |
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++ documentation for log1p |