Assume the following arrays are given:
a = array([1,3,5])
b = array([2,4,6])
How would one interweave them efficiently so that one gets a third array like this
c = array([1,2,3,4,5,6])
It can be assumed that length(a)==length(b).
|
|
|
I like Josh's answer. I just wanted to add a more mundane, usual, and slightly more verbose solution. I don't know which is more efficient. I expect they will have similar performance.
|
|||||||||||
|
|
Here is a one-liner:
|
|||||||||||
|
|
Maybe this is more readable than @JoshAdel's solution:
|
|||
|
|
|
and more importantly this works for arbitrary shapes of Also you may want to try out
u've got options now! |
||||
|
|
This will interleave/interlace the two arrays and I believe it is quite readable:
|
||||
|
|