Status: Started
Owner: [email protected]
Labels: Type-Defect Priority-Medium Matrices

New issue 3217 by [email protected]: simultaneous substitution for matrices
http://code.google.com/p/sympy/issues/detail?id=3217

Since issue 3145 subs has a simultaneous keyword, but this is not understood by Matrix instances.

In [1]: e=x*y

In [2]: e.subs({x: y-1, y:x-1}, simultaneous=True)
Out[2]: (x - 1)*(y - 1)

In [3]: e=Matrix([e])

In [4]: e.subs({x: y-1, y:x-1}, simultaneous=True)
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)

/home/jacobi/jrioux/git/sympy-jrioux/<ipython console> in <module>()

TypeError: subs() got an unexpected keyword argument 'simultaneous'


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