Re: [Numpy-discussion] Howto create a record array from arrays without copying their data

2009-08-12 Thread josef . pktd
On Wed, Aug 12, 2009 at 11:28 AM, Ryan May wrote: > On Wed, Aug 12, 2009 at 10:22 AM, Ralph Heinkel wrote: >> >> Hi, >> >> I'm creating (actually calculating) a set of very large 1-d arrays >> (vectors), which I would like to assemble into a record array so I can >> access the data row-wise.  Unfo

Re: [Numpy-discussion] Howto create a record array from arrays without copying their data

2009-08-12 Thread Ryan May
On Wed, Aug 12, 2009 at 10:22 AM, Ralph Heinkel wrote: > Hi, > > I'm creating (actually calculating) a set of very large 1-d arrays > (vectors), which I would like to assemble into a record array so I can > access the data row-wise. Unfortunately it seems that all data of my > original 1-d array

[Numpy-discussion] Howto create a record array from arrays without copying their data

2009-08-12 Thread Ralph Heinkel
Hi, I'm creating (actually calculating) a set of very large 1-d arrays (vectors), which I would like to assemble into a record array so I can access the data row-wise. Unfortunately it seems that all data of my original 1-d arrays are getting copied in memory during that process. Is there a w