Код: Выделить всё
from sympy import *
from sympy.abc import x,y
t = symbols("t")
A = Matrix([
[0, 1],
[-1, 0]
])*t
A1 = A.exp()
Код: Выделить всё
A1Подробнее здесь: https://stackoverflow.com/questions/793 ... n-in-sympy
Код: Выделить всё
from sympy import *
from sympy.abc import x,y
t = symbols("t")
A = Matrix([
[0, 1],
[-1, 0]
])*t
A1 = A.exp()
Код: Выделить всё
A1