This commit is contained in:
Marco Di Martino 2025-11-06 16:05:56 +01:00
parent c6a92436ef
commit b5f434ac6b

View File

@ -43,7 +43,8 @@ def rot_2D(angle_degrees: float) -> Matrix:
]
return rotation_matrix
matrix = [[1,2,3], [2,3,4]]
if __name__ == "__main__":
matrix = [[1,2,3], [2,3,4]]
print("Matrix A:")
print(tabulate(matrix))
print("Matrix A:")
print(tabulate(matrix))