Hi Is there an easy way to initialize an array of arrays in one statement? I tried the following
> Any[ Float64[1,2,3]; Float64[4, 5] ]
5-element Array{Any,1}:
1.0
2.0
3.0
4.0
5.0
> Any[ Float64[1,2,3] Float64[4, 5] ]
ERROR: ArgumentError: number of rows of each array must match (got (3,2))
in typed_hcat at abstractarray.jl:772
However, what I want to have is (achieved using `push!` in multiple
statements)
2-element Array{Any,1}:
[1.0,2.0,3.0]
[4.0,5.0]
Thanks,
Islam
