matrix-inverse-print
Published at 2024-02-23
Last update over 365 days ago
Licensed under CC BY-NC-SA 4.0
langs
python
sympy
from sympy import *
init_printing()
m = Matrix([[1, 3], [-2, 3]])
m.inv()
Published at 2024-02-23
Last update over 365 days ago
Licensed under CC BY-NC-SA 4.0
langs
python
sympy
from sympy import *
init_printing()
m = Matrix([[1, 3], [-2, 3]])
m.inv()