Thanks Eric!
On Saturday, December 5, 2015 at 6:21:13 PM UTC-8, Lex wrote:
>
> 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
>
>
>
>
>
