|
⇤ ← Revision 1 as of 2010-12-17 10:39:24
Size: 440
Comment:
|
← Revision 2 as of 2010-12-17 10:40:19 ⇥
Size: 434
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 22: | Line 22: |
| * <satheshchandra>, <student>, <vits> | |
| Line 23: | Line 24: |
| * <Your Name>, <Profession>, <Organization> |
Book
Linear Algebra
Author
Gilbert Strang
Edition
a=matrix([[2,3],[1,4]]) print a b=a.inverse()/*the inverse of matrix a is stored in b we know that a.a inverse=I*/ print b print a*b c=b.inverse() print c print b*c
/*_ends */
Solution by:
<satheshchandra>, <student>, <vits>
<Your Name>, <Profession>, <Organization>
