Freigeben über


log, logf, log10, log10f

Berechnet Logarithmus.

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 
);

Parameter

  • x
    Wert, dessen Logarithmus durchsucht werden soll.

Rückgabewert

Die log-Funktionen geben den natürlichen Logarithmus zurück (Basis e) von x, wenn erfolgreich. Die Funktionen log10 geben den Logarithmus zur Basis 10 zurück. Wenn x negativ ist, geben diese Funktionen ein unterbreitet, standardmäßig zurück. Wenn x 0 ist, geben sie INF zurück (unendlich).

Eingabe

SEH-Ausnahme

Matherr-Ausnahme

± QNAN,IND

Keine

_DOMAIN

± 0

ZERODIVIDE

_SING

x < 0

INVALID

_DOMAIN

log und log10 verfügt eine Implementierung, die zusätzlich SIMD Extensions SSE2-Anweisungen (2) verwendet. Weitere Informationen finden Sie unter _set_SSE2_enable und Anwendungseinschränkungen die Implementierung SSE2-Anweisungen.

Hinweise

C++ zulässig Überladen, sodass Sie Überladungen von log und log10 aufrufen. In einem C-Programm nehmen log und log10 geben immer und double zurück.

Anforderungen

Routine

Erforderlicher Header

log, logf, log10, log10f

<math.h>

Zusätzliche Informationen zur Kompatibilität finden Sie unter Kompatibilität in der Einführung.

Bibliotheken

Alle Versionen C-Laufzeitbibliotheken.

Beispiel

// 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 );
}

Ausgabe

log( 9000.00 ) = 9.104980
log10( 9000.00 ) = 3.954243

Um Logarithmus für andere Basiszahlen zu generieren, verwenden Sie die mathematische Beziehung: protokollieren Sie zur Basis b eines == natürlichen Logarithmus (a)/des natürlichen Logarithmus (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);
}

Ausgabe

Log base 2 of 65536.000000 is 16.000000

.NET Framework-Entsprechung

Siehe auch

Referenz

Gleitkommaunterstützung

exp, expf

_matherr

pow, powf, powl

_CIlog

_CIlog10