exp

Exponential

📝 Syntax

  • R = exp(M)

📥 Input argument

  • M - a variable

📤 Output argument

  • R - result of exp: exponential.

📄 Description

exp computes the exponential value.

For real numbers: exe^x

For complex numbers z = x + iy: ez=ex(cosy+isiny)e^z = e^x(\cos y + i\sin y)

💡 Example

x = [1+i,-i;i,2i];
r = exp(x)

🔗 See also

conj.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?