diff --git a/compute.py b/compute.py index ea04c5a..ccb7b7c 100644 --- a/compute.py +++ b/compute.py @@ -1,5 +1,6 @@ from typing import List import math +from tabulate import tabulate def matmul(mat1: List[List[int]], mat2: List[List[int]]) -> List[List[int]]: """ @@ -93,6 +94,9 @@ def main(): for row in rot_2D(math.pi / 2): print(row) + print("Matrix A:") + print(tabulate(matrix_a)) + if __name__ == "__main__": main()