inverse(a)

Returns the inverse of matrix a.


See also solve 


Example


a = ( 1, 2 ; 3, 1 )

1  2

3  1

inverse( a )

-1/5   2/5

 3/5  -1/5