diff --git a/compute.py b/compute.py index aed0f5a..b275f3e 100644 --- a/compute.py +++ b/compute.py @@ -1,4 +1,9 @@ import math +from tabulate import tabulate + +##print("Matrix A:") +##print(tabulate(matrix_a)) + def matmul(mA:list[list[int]], mB:list[list[int]]) -> list[list[int]]: """