Re: [Numpy-discussion] not inheriting from ndarray

2015-07-14 Thread Neal Becker
Neal Becker wrote: > I wanted the function of an array that accumulates my results, it starts > at > zero size, and resizes as needed. New results are added using > > accumulated += new_array > > A simple implementation of this is here: > > https://gist.github.com/2ab48e25fd460990d045.git > >

[Numpy-discussion] not inheriting from ndarray

2015-07-14 Thread Neal Becker
I wanted the function of an array that accumulates my results, it starts at zero size, and resizes as needed. New results are added using accumulated += new_array A simple implementation of this is here: https://gist.github.com/2ab48e25fd460990d045.git I have 2 questions: 1. Is this a reason