added tabulate
This commit is contained in:
parent
93dd0275a5
commit
6cbe0e7478
@ -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))
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user