On Wed, Jul 21, 2010 at 4:35 PM, Skipper Seabold <jsseabold@gmail.com> wrote:Yes.
> On Tue, Jul 20, 2010 at 10:24 PM, Keith Goodman <kwgoodman@gmail.com> wrote:
>> Good point. Looks like we can get rid of 2 copies! I didn't get rid of
>> the second copy but I did cut things down just to see what the timing
>> was like. I also threw out the ability to handle complex numbers (only
>> saves an if iscomplex statement):
>
> Just for timing purposes though right?
Can someone confirm that the copy in np.linalg.lstsq
is not needed? I'm assuming that ndarray.__setitem__ never gives a
bstar[:b.shape[0],:n_rhs] = b.copy()
view of the right-hand side.
________