Is it possible to interleave two arrays in julia?
For example if a=[1:10]
and b=[11:20]
I want to be able to return
20-element Array{Int64,1}:
1
11
2
12
3
13
4
14
.
.
.
Somewhat similar to what ruby can do Merge and interleave two arrays in Ruby
20x1 Array{Int64,2}
objects, not10-element Array{Int64,1}
objects. – Lentamente