Tuesday, September 29, 2009

Matrix Multiplication

Yesterday we did matrix multiplication basically this stuff is pretty easy to do. I'm just going to do one of the examples we did in class yesterday because i already did this once but it got erased by accident.


W T L
S=[7 2 4] P=W[2] 7(2)+2(1)+4(0)=16 T=[16]
[ 5 1 7] T [1] 5(2)+1(1)+7(0)=11 [11]
[ 8 0 5] L[0] 8(2)+0(1)+5(0)=16 [16]
[ 4 1 8] 4(2)+1(1)+8(0)=9 [ 9 ]

1 comment: