I have an array of multi-dim arrays Array{Array{Float64,3},1}
and what I want is a single 4 dimensional array Array{Float64,4}
.
I have gone through the other responses
- concatenate array in julia
- Concatenating arrays in Julia
- Multidimensional Array Comprehension in Julia
But no combination of cat
and reshape
seems to do the trick.
There must be a good idiomatic way... what is it?