On 9/15/2008 6:25 AM Francesc Alted apparently wrote:
> max_idx = min(len(A), len(B))
> (A[:max_idx] * B[:max_idx]).sum()
> 
> which does not require a copy becuase the [:max_idx] operator returns 
> just a view of the arrays.

But it still requires creating a new array,
so perhaps use of ``dot`` above or even::

        sum(ai*bi for ai,bi in izip(A,B))

is worth considering in this case.
(That is the built-in ``sum``.)

Alan Isaac

_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to