Re: [Numpy-discussion] Proposed new function for joining arrays: np.interleave

2014-04-26 Thread Alexander Belopolsky
On Mon, Apr 7, 2014 at 11:12 AM, Björn Dahlgren wrote: > I think the code needed for the general n dimensional case with m number > of arrays > is non-trivial enough for it to be useful to provide such a function in > numpy > As of version 1.8.1, I count 571 public names in numpy namespace: >>>

Re: [Numpy-discussion] Proposed new function for joining arrays: np.interleave

2014-04-21 Thread Ralf Gommers
On Mon, Apr 7, 2014 at 5:12 PM, Björn Dahlgren wrote: > Hello, > > Interleaving arrays is something I need to do every now and then, and by > the looks of stackoverflow so do others: > > > http://stackoverflow.com/questions/12861314/interleave-rows-of-two-numpy-arrays-in-python > http://stackover

[Numpy-discussion] Proposed new function for joining arrays: np.interleave

2014-04-07 Thread Björn Dahlgren
Hello, Interleaving arrays is something I need to do every now and then, and by the looks of stackoverflow so do others: http://stackoverflow.com/questions/12861314/interleave-rows-of-two-numpy-arrays-in-python http://stackoverflow.com/questions/5347065/interweaving-two-numpy-arrays I think the