matrix erstellt

This commit is contained in:
Marco Di Martino 2025-11-06 15:21:18 +01:00
parent c5d6609eb2
commit eb0f1e8707

View File

@ -41,4 +41,9 @@ def rot_2D(angle_degrees: float) -> Matrix:
[cos_theta, -sin_theta], [cos_theta, -sin_theta],
[sin_theta, cos_theta] [sin_theta, cos_theta]
] ]
return rotation_matrix return rotation_matrix
matrix = [[1,2,3], [2,3,4]]
print("Matrix A:")
print(tabulate(matrix))