diff --git a/compute.py b/compute.py index 00aa72b..698e55e 100644 --- a/compute.py +++ b/compute.py @@ -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)) +