Advertisement
MatsGranvik

Matrix logarithm

Jan 20th, 2022
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. L = {{1, 0, -3}, {0.5, 1, 0}, {0.333333333, 0, 1}} - IdentityMatrix[3]
  2. MatrixForm[Sum[(-1)^(p + 1)*MatrixPower[L, p]/p, {p, 1, 1000000}]]
  3.  
  4. "is the same as:"
  5.  
  6. MatrixLog[{{1,0,-3},{0.5,1,0},{0.333333333,0,1}}]
  7.  
  8. https://www.wolframalpha.com/input/?i=MatrixLog%5B%7B%7B1%2C0%2C-3%7D%2C%7B0.5%2C1%2C0%7D%2C%7B0.333333333%2C0%2C1%7D%7D%5D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement