log10
Compute the base-10 logarithm of the input.
Interface Definition
C interface:
float log10f(float x);
double log10(double x);
double log10_18(double x);
long double log10l(long double x);
log10_18 is provided only in the high-precision version.
Fortran interface:
RES = LOG10F(X);
RES = LOG10(X);
Parameters
Parameter |
Type |
Description |
Input/Output |
|---|---|---|---|
x |
|
Floating-point value of the input data. |
Input |
Return Value
- The base-10 logarithm y of x is returned. y ∈ (-INF, +INF)
- If input x is ±0, the return value is -∞.
- If input x is 1, the return value is 0.
- If input x is negative, the return value is NaN.
- If input x is -∞, the return value is NaN.
- If input x is +∞, the return value is +∞.
- If input x is NaN, the return value is NaN.
Dependencies
C: "km.h"
Examples
C interface:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | double pi = acos(-1); // typical usage double x1 = 10.0, x2 = 2.0, x3 = 125, x4 = 5; // special handling double a = 0.0, b = INFINITY, c = -INFINITY, d = NAN, e = 1.0; // print result printf("base-5 logarithm of 125 = %.15f\n", log10(x3)/log10(x4)); printf("log10(1.0) = %.15f\n", log10(e)); printf("log10(10.0) = %.15f\n", log10(x1)); printf("log10(2.0) = %.15f\n", log10(x2)); printf("log10(0.0) = %.15f\n", log10(a)); printf("log10(INFINITY) = %.15f\n", log10(b)); printf("log10(-INFINITY) = %.15f\n", log10(c)); printf("log10(NAN) = %.15f\n", log10(d)); /* * base-5 logarithm of 125 = 3.000000000000000 * log10(1.0) = 0.000000000000000 * log10(10.0) = 1.000000000000000 * log10(2.0) = 0.301029995663981 * log10(0.0) = -inf * log10(INFINITY) = inf * log10(-INFINITY) = nan * log10(NAN) = nan * * */ |
Fortran interface:
REAL(8) :: X = 2
PRINT*, LOG10(X)
!
! OUTPUT
! 0.301029995663981
!
Parent topic: Exponential and Logarithmic Functions