Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 10:14:06
Size: 456
Comment:
Revision 2 as of 2010-12-17 10:15:20
Size: 450
Comment:
Deletions are marked like this. Additions are marked like this.
Line 21: Line 21:
   * <satheshchandra>, <student>, <vits>
Line 22: Line 23:
   * <Your Name>, <Profession>, <Organization>
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

A=matrix([[1,0],[2,4],[2,1]])
B=matrix([[3,3,0],[1,2,1]])
print A*B
p=A[::,:1]*B[:1]
q=A[::,1:]* B[1:]
print p+q
print A*B==(p+q)

#the given matrix AB using coloumn times rows

  • Solution by:

    • <satheshchandra>, <student>, <vits>

    • <Your Name>, <Profession>, <Organization>

Strang-1.4-46-U (last edited 2010-12-17 10:15:20 by satheshchandra)