added tabulate

This commit is contained in:
Mona Benkert 2025-11-01 18:07:18 +01:00
parent 93dd0275a5
commit 6cbe0e7478

View File

@ -1,5 +1,6 @@
import math
from typing import List
from tabulate import tabulate
def matmul(matrix_a:List[List[float]], matrix_b:List[List[float]]) -> List[List[float]]:
"""
@ -90,3 +91,6 @@ if __name__ == "__main__":
print("rotated matrix:")
print(rotated)
print("Matrix A:")
print(tabulate(matrix_a))