Comment #7 on issue 771 by [email protected]: Matrix equations
http://code.google.com/p/sympy/issues/detail?id=771

With https://github.com/sympy/sympy/pull/1667, this nearly works:

In [11]: A = Matrix(2,2,[a,b,c,d])

In [12]: B = Matrix(2,2,[0,2,-3,0])

In [13]: C = Matrix(2,2,[1,2,3,4])

In [14]: solve(Eq(A*B, C), [a, b, c, d])
Out[14]: []

In [15]: solve(A*B - C, [a, b, c, d])
Out[15]: {a: 1, b: -1/3, c: 2, d: -1}


--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to