exp(m)

The exp(m) function returns a matrix where each element is equal to e raised-to-the-m(i,j) power.

Example

OML

>> m=[1 -2;-3 4]

1 -2

-3 4

>> exp(m)

2.71828 0.135335

0.0497871 54.5982