log10
Common logarithm (base 10).
📝 Syntax
R = log10(M)
📥 Input argument
M - a variable
📤 Output argument
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.
💡 Example
x = [1+i,-i;i,2i];
r = log10(x)🔗 See also
log.
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?