Re: Issue 1743 in sympy: Vectorize subs and make a dummy function for it

2011-03-17 Thread sympy
Comment #3 on issue 1743 by ronan.l...@gmail.com: Vectorize subs and make a dummy function for it http://code.google.com/p/sympy/issues/detail?id=1743 @vectorize is on its way out now (cf. issue 2182), so this should probably be closed. -- You received this message because you are

Re: Issue 1743 in sympy: Vectorize subs and make a dummy function for it

2009-12-05 Thread sympy
Comment #1 on issue 1743 by ronan.l...@gmail.com: Vectorize subs and make a dummy function for it http://code.google.com/p/sympy/issues/detail?id=1743 I disagree. I think it's perfectly reasonable that s.subs(x, range(10)) raises - if only because range(10) * pi raises. Also, I find

Re: Issue 1743 in sympy: Vectorize subs and make a dummy function for it

2009-12-05 Thread sympy
Updates: Owner: --- Comment #2 on issue 1743 by asmeurer: Vectorize subs and make a dummy function for it http://code.google.com/p/sympy/issues/detail?id=1743 I honestly could go either way (I put this here because of an post to the mailing list), but let's see what the consensus is.

Issue 1743 in sympy: Vectorize subs and make a dummy function for it

2009-12-03 Thread sympy
Status: Accepted Owner: asmeurer Labels: Type-Defect Priority-Medium EasyToFix New issue 1743 by asmeurer: Vectorize subs and make a dummy function for it http://code.google.com/p/sympy/issues/detail?id=1743 The following should work: In [8]: s = x*pi In [9]: s.subs(x, range(10))