Transformationen

This commit is contained in:
2025-12-02 10:22:38 +01:00
parent e5ed7a5b6b
commit 24e1346dbb

View File

@@ -0,0 +1,9 @@
import sympy as sp
dX, dY, dZ, m, q0, q1, q2, q3 = sp.symbols('dX dY dZ m q0 q1 q2 q3')
f = sp.Matrix([dX - q0 + 1])
J = f.jacobian([dX, dY, q0])
print(J)