−Table of Contents
Exp
Matrix.Exp(M) takes M and returns eM=∑∞n=0Mnn!.
Example
Input
- Example.Quanty
M ={{-10,1}, {1,0.3}} print(Matrix.Exp(M))
Result
{ { 0.013665171949002 , 0.14163701011454 } , { 0.14163701011454 , 1.4725263761288 } }
Matrix.Exp(M) takes M and returns eM=∑∞n=0Mnn!.
M ={{-10,1}, {1,0.3}} print(Matrix.Exp(M))
{ { 0.013665171949002 , 0.14163701011454 } , { 0.14163701011454 , 1.4725263761288 } }