Hi I am not sure how to create an array of fixed size which may store matrices of different dimensions for later applying algebraic operations. Any help is appreciated. Some of the things I tried:
x = [Matrix{} for i=1:5]
x = [Any for i=1:5]
for i in 1:5
x[i] = Any
end
