Hello there, I am looking into ways to grow a multidimensional array in julia. Essential I would like to do the following:
d1=10 d2=10 A=Array(Float64, d1, d2, 0) b=ones(d1, d2) push!(A, b) A[:, :, 1] == b Is there any way to do such a thing? According to the documentation on Dequeues the push interface is only fully implemented for Vector. Cheers, Valentin
