log
Natural logarithm.
📝 Syntax
R = log(M)
📥 Input argument
M - a variable
📤 Output argument
R - result of log: Natural logarithm.
📄 Description
log computes the natural logarithm.
For real positive numbers:
For complex numbers z:
where
is the modulus and
is the argument of z.
💡 Example
x = [1+i,-i;i,2i];
r = log(x)🔗 See also
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?