log10
Common logarithm (base 10).
📝Syntax
R = log10(M)
📥Input Arguments
Parameter Description
M a variable
📤Output Arguments
Parameter Description
R result of log: base 10.
📄Description

log10 computes common logarithm (base 10).

For negative real and complex values of M, log10 function returns complex values.

💡Examples
x = [1+i,-i;i,2i];
r = log10(x)
🔗See Also
log
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub