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 */

Strang-1.4-39-U (last edited 2010-12-17 10:40:19 by satheshchandra)