On 4/3/2013 2:44 PM, [email protected] wrote: > I suggest add function dot to matrix
>>> import numpy as np; x = np.arange(5); I = np.asmatrix(np.identity(5)); >>> I.dot(x) matrix([[ 0., 1., 2., 3., 4.]]) Alan Isaac _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
