matrix erstellt

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

View File

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