I have a group of matrices as below
import numpy as np
Number = 10
mylist = [np.random.randint(1, 5, size=(4, 4)) for i in range(Number)]
Now I want to matrix-multiply all matrices in mylist
at once. Here value of Number
may change
Is there any method/function available to perform this?