From: Pierre GM <pgm...@gm...> - 2006-11-13 04:20:51
|
On Sunday 12 November 2006 20:10, Erin Sheldon wrote: > Actually, there is a problem with that approach. It first converts > the entire array to a single type, by default a floating type. As A.M. Archibald suggested, you can use list comprehension: N.array([(a,b,c,d,) for (a,b,c,d) in yourlist], dtype=yourdesc) or N.fromiter(((a,b,c,d) for (a,b,c,d,) in yourlist), dtype=yourdesc) Would you mind trying that, and let us know which one works best ? That could be put on the wiki somewhere... |