Hi I I wondered if there is a neat in Julia way to create a multi-dimensional array from an array of arrays. This would be useful for creating data structures programatically.
For example... arr = map(x->[0 1 2 3],1:8) now i have this array of arrays. but what I would really like is to make the entries into the rows of an 8x4 matrix. Is there a simple way to do this?
