R = log(M)
| Parameter | Description |
|---|---|
| M | a variable |
| Parameter | Description |
|---|---|
| R | result of log: Natural logarithm. |
log computes the natural logarithm.
For real positive numbers:
$$\ln(x)$$For complex numbers z:
$$\ln(z) = \ln|z| + i\arg(z)$$where
$$|z|$$is the modulus and
$$\arg(z)$$is the argument of z.
x = [1+i,-i;i,2i];
r = log(x)
| Version | Description |
|---|---|
| 1.0.0 | initial version |