On Thu, 15 Nov 2007, George Nurser wrote:

> It looks to me like
> a,b = (zeros((2,)),)*2
> is equivalent to
> x= zeros((2,))
> a,b=(x,)*2

Correct.

> If this is indeed a feature rather than a bug, is there an alternative
> compact way to allocate many arrays?

a, b = [zeros((2,)) for x in range(2)]

_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to