I want to compute dot product of two vectors stored as lists a and b.a and b are of the same length.
. >>> import numarray as na . >>> a, b = na.arange(5), na.arange(5, 10) . >>> na.dot(a, b) . 80
Steve -- http://mail.python.org/mailman/listinfo/python-list