Re: [Numpy-discussion] Multi-dimensional array of splitted array

2016-03-23 Thread Ibrahim EL MEREHBI
As an object, will it change how numpy operates? Sincerely Yours, Bob On 23/03/2016 15:22, Sebastian Berg wrote: On Mi, 2016-03-23 at 10:02 -0400, Joseph Fox-Rabinovitz wrote: On Wed, Mar 23, 2016 at 9:37 AM, Ibrahim EL MEREHBI wrote: Thanks Eric. I already checked that. It's not w

Re: [Numpy-discussion] Multi-dimensional array of splitted array

2016-03-23 Thread Ibrahim EL MEREHBI
, 26], [ 7, 17, 27]]), array([[ 8, 18, 28], [ 9, 19, 29]])] Eric On Wed, Mar 23, 2016 at 9:06 AM, Ibrahim EL MEREHBI mailto:bobmerh...@gmail.com>> wrote: Hello, I have a multi-diensional array that I would like to split its columns. For example consider, dat

[Numpy-discussion] Multi-dimensional array of splitted array

2016-03-23 Thread Ibrahim EL MEREHBI
Hello, I have a multi-diensional array that I would like to split its columns. For example consider, dat = np.array([np.arange(10),np.arange(10,20), np.arange(20,30)]).T array([[ 0, 10, 20], [ 1, 11, 21], [ 2, 12, 22], [ 3, 13, 23], [ 4, 14, 24], [ 5, 15, 25]