log10
base 10 logarithm
Syntax
y = log10(x)
Arguments
- x, y
arrays of real or complex numbers, of any number of dimensions and of any identical sizes.
Description
log10(x)
is the "element-wise" base 10 logarithm
y(i,j)=log10(x(i,j))
.
log10(…)
can be overloaded for unsupported input types.
Examples
10.^log10([1,%i,-1,-%i])
See also
Report an issue | ||
<< log | Log - exp - power | log1p >> |