std::log1p
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cmath>
|
||
float log1p( float arg ); |
(desde C++11) | |
double log1p( double arg ); |
(desde C++11) | |
long double log1p( long double arg ); |
(desde C++11) | |
double log1p( Integral arg ); |
(desde C++11) | |
Calcula o natural (base
e) logaritmo de 1+arg. Esta função é mais preciso do que a expressão std::log(1+arg) se arg está perto de zero.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.
Parâmetros
| arg | - | flutuando valor de ponto
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. |
Valor de retorno
ln(1+arg)
Erro de domínio ocorre se
arg é negativo. NAN é devolvido em caso.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.
Faixa de erro ocorre se
arg é 0. -HUGE_VAL é devolvido em caso. Original:
Range error occurs if
arg is 0. -HUGE_VAL 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.
