solve(a,b)

Returns the solution of a*x=b where a and b are matrices.


Example


a = ( 2, 3 ; 4, 5 )

2  3

4  5

b = ( 2 ; 3 )

2

3

c = solve( a, b )

-1/2

 1