std::log10
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cmath>
|
||
float log10( float arg ); |
||
double log10( double arg ); |
||
long double log10( long double arg ); |
||
double log10( Integral arg ); |
(desde C++11) | |
Calcula o comum (base
10) logaritmo de arg.Original:
Computes the common (base
10) logarithm of arg.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
10 base de logaritmo de arg. Original:
base
10 logarithm of arg. 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.
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.
