Next: MALLOC, Previous: LOG, Up: Intrinsic Procedures
LOG10
— Base 10 logarithm functionLOG10(X)
computes the base 10 logarithm of X.
X = LOG10(X)
X | The type shall be REAL(*) or
COMPLEX(*) .
|
REAL(*)
or COMPLEX(*)
.
The kind type parameter is the same as X.
program test_log10 real(8) :: x = 10.0_8 x = log10(x) end program test_log10
Name | Argument | Return type | Option
|
ALOG10(X) | REAL(4) X | REAL(4) | f95, gnu
|
DLOG10(X) | REAL(8) X | REAL(8) | f95, gnu
|