Exp

Matrix.Exp($M$) takes $M$ and returns $e^M = \sum_{n=0}^{\infty} \frac{M^n}{n!}$.

Example

Input

Example.Quanty
M ={{-10,1},
    {1,0.3}}
print(Matrix.Exp(M))

Result

{ { 0.013665171949002 , 0.14163701011454 } , 
  { 0.14163701011454 , 1.4725263761288 } }

Table of contents

Print/export