I have a matrix T
:
[ 0.2 0.4 0.4]
[ 0.8 0.2 0. ]
[ 0.8 0. 0.2]
T = numpy.mat("0.2 0.4 0.4;0.8 0.2 0.0;0.8 0.0 0.2")
I have vector v
, numpy.array(73543, -36772, 36772)
v = numpy.array([ 73543, -36772, 36772])
How do I multiply the array v
by the matrix T
correctly in python?
thanks,
Chris