Member of the basic class.
c = log10(a)
Computes the base 10 logarithm of the input elements. The base 10 logarithm of zero is -inf.
| Name | Description |
| a | Specifies a scalar, vector, or matrix. |
| Name | Description |
| c | Returns the base 10 logarithm of the elements in a. c returns complex numbers for negative or complex elements in a. c is a matrix of the same size as a. |
A = [0.1, 1; 10, 100]
C = log10(A)