From: Tim H. <tim...@ie...> - 2006-10-09 13:01:31
|
Charles R Harris wrote: > Hi Nadav, > > On 10/8/06, *Nadav Horesh* <na...@vi... > <mailto:na...@vi...>> wrote: > > > There is a "tensortdot" function in numpy1.0rc1 > > > > The tensordot is not the same thing as a tensor product. What I want > is the following: > > def tensor(a, b) : > """Tensor product of a and b > > """ > a = asarray(a) > b = asarray(b) > return outer(a, b).reshape(a.shape + b.shape) > Is this not the same things as numpy.multiply.outer(a, b)? (as opposed to outer(a, b), which appears to pretend that everything is a vector -- I'm not sure what the point of that is). -tim |