log, logf, log10, log10f
Calcula logaritmos.
double log(
double x
);
float log(
float x
); // C++ only
long double log(
long double x
); // C++ only
float logf(
float x
);
double log10(
double x
);
float log10(
float x
); // C++ only
long double log10(
long double x
); // C++ only
float log10f (
float x
);
Parâmetros
- x
Valor cujo logaritmo deve ser localizado.
Valor de retorno
As funções de log retorna o logaritmo natural (base) e x se com êxito. As funções log10 retorna o logaritmo de base. Se x for negativo, essas funções retornam um indefinido, por padrão. Se x for 0, retornam INF (infinitos).
Entrada |
Exceção SEH |
Exceção Matherr |
---|---|---|
± QNAN,IND |
nenhum |
_DOMAIN |
± 0 |
ZERODIVIDE |
_SING |
x < 0 |
INVÁLIDO |
_DOMAIN |
log e log10 têm uma implementação que usa Streaming SIMD 2 (SSE2 Extensions). Consulte _set_SSE2_enable para obter informações e as restrições para usar a implementação SSE2.
Comentários
C++ reserva evitada, assim que você pode chamar sobrecargas de log e de log10. No programa c, log e log10 sempre levam e retornam um valor double.
Requisitos
Rotina |
Cabeçalho necessário |
---|---|
log, logf, log10, log10f |
<math.h> |
Para informações adicionais de compatibilidade, consulte Compatibilidade na Introdução.
Bibliotecas
Todas as versões das Bibliotecas em tempo de execução C.
Exemplo
// crt_log.c
/* This program uses log and log10
* to calculate the natural logarithm and
* the base-10 logarithm of 9,000.
*/
#include <math.h>
#include <stdio.h>
int main( void )
{
double x = 9000.0;
double y;
y = log( x );
printf( "log( %.2f ) = %f\n", x, y );
y = log10( x );
printf( "log10( %.2f ) = %f\n", x, y );
}
Saída
log( 9000.00 ) = 9.104980
log10( 9000.00 ) = 3.954243
Para gerar logaritmos para outras bases, use a relação matemática: registrar em log b base de um log natural == (a)/log natural (b).
// logbase.cpp
#include <math.h>
#include <stdio.h>
double logbase(double a, double base)
{
return log(a) / log(base);
}
int main()
{
double x = 65536;
double result;
result = logbase(x, 2);
printf("Log base 2 of %lf is %lf\n", x, result);
}
Saída
Log base 2 of 65536.000000 is 16.000000