matrice de matrices Python Grepper

# initialize a matrix of matrices with zeros with the matrix being 2 by 2
# and each element is a matrix of 5 by 5
np.zeros((2,2,5,5))
Enthusiastic Elephant