concatenate Numeric

2006-07-09 Thread Sheldon
Hi, I am trying to build a large array using concatenate function in python. So as I loop over the number of arrays, of which there are 12 (4 down and 3 across), I create 3 long arrays by concatenating them at the bottom and then concatenating them side by side: for ind in range(num_arrays):

Re: concatenate Numeric

2006-07-09 Thread Sheldon
Sheldon skrev: > Hi, > > I am trying to build a large array using concatenate function in > python. > So as I loop over the number of arrays, of which there are 12 (4 down > and 3 across), I create 3 long arrays by concatenating them at the > bottom and then concatenating them side by side: > for

Re: concatenate Numeric

2006-07-09 Thread Robert Kern
Sheldon wrote: > Hi, > > I am trying to build a large array using concatenate function in > python. > So as I loop over the number of arrays, of which there are 12 (4 down > and 3 across), I create 3 long arrays by concatenating them at the > bottom and then concatenating them side by side: [snip

Re: concatenate Numeric

2006-07-09 Thread Sheldon
Robert Kern skrev: > Sheldon wrote: > > Hi, > > > > I am trying to build a large array using concatenate function in > > python. > > So as I loop over the number of arrays, of which there are 12 (4 down > > and 3 across), I create 3 long arrays by concatenating them at the > > bottom and then con

Re: concatenate Numeric

2006-07-10 Thread Sheldon
Robert Kern wrote: > Sheldon wrote: > > Hi, > > > > I am trying to build a large array using concatenate function in > > python. > > So as I loop over the number of arrays, of which there are 12 (4 down > > and 3 across), I create 3 long arrays by concatenating them at the > > bottom and then conc

Re: concatenate Numeric

2006-07-10 Thread Robert Kern
Sheldon wrote: > Thanks again for showing me this. I have been trying to read up on > reduce() as I have never used it before. I would like to know what it > does. So far my search has found nothing that I can grasp. The > reference library notes are estoteric at best. > Can you enlighten me on thi

Re: concatenate Numeric

2006-07-10 Thread Sheldon
Robert Kern skrev: > Sheldon wrote: > > Thanks again for showing me this. I have been trying to read up on > > reduce() as I have never used it before. I would like to know what it > > does. So far my search has found nothing that I can grasp. The > > reference library notes are estoteric at best