Re: Issue 771 in sympy: Matrix equations

2013-02-20 Thread sympy
Updates: Status: Fixed Comment #12 on issue 771 by smi...@gmail.com: Matrix equations http://code.google.com/p/sympy/issues/detail?id=771 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue notifications to this a

Issue 3659 in sympy: Issues with Ei from integrate

2013-02-20 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium Integration New issue 3659 by asmeu...@gmail.com: Issues with Ei from integrate http://code.google.com/p/sympy/issues/detail?id=3659 In [60]: integrate(exp(x)/x, (x, -oo, oo)) RuntimeError: maximum recursion depth exceeded In [61]: i

Re: Issue 3626 in sympy: Wrong order and series coefficients for expint()

2013-02-20 Thread sympy
Comment #2 on issue 3626 by asmeu...@gmail.com: Wrong order and series coefficients for expint() http://code.google.com/p/sympy/issues/detail?id=3626 Similar: issue 2969 -- You received this message because this project is configured to send all issue notifications to this address. You ma

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-02-20 Thread sympy
Comment #6 on issue 2969 by asmeu...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 But not necessarily the same bug. When one is fixed, let's be sure to check the other. -- You received this message because this project is configured

Re: Issue 1996 in sympy: Incorrect exception in dsolve()

2013-02-20 Thread sympy
Updates: Status: Fixed Comment #3 on issue 1996 by asmeu...@gmail.com: Incorrect exception in dsolve() http://code.google.com/p/sympy/issues/detail?id=1996 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue no

Re: Issue 3083 in sympy: Not is still vectorized

2013-02-20 Thread sympy
Updates: Status: Fixed Comment #5 on issue 3083 by asmeu...@gmail.com: Not is still vectorized http://code.google.com/p/sympy/issues/detail?id=3083 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue notifications

Re: Issue 3223 in sympy: degree((x+1)**10000) takes too long

2013-02-20 Thread sympy
Comment #11 on issue 3223 by gupta.ha...@gmail.com: degree((x+1)**1) takes too long http://code.google.com/p/sympy/issues/detail?id=3223 Can you make it more clear. One thing I understood is that -e.subs(x,1/x).leadterm(x)[1] won't be useful when we are asking for the degree when we ask

Re: Issue 3657 in sympy: Summation over non-integers

2013-02-20 Thread sympy
Comment #5 on issue 3657 by mrock...@gmail.com: Summation over non-integers http://code.google.com/p/sympy/issues/detail?id=3657 In an ideal case it would be able to handle any discrete set, not just affine transforms of the naturals. For example it would be nice to be able to sum over the

Re: Issue 3657 in sympy: Summation over non-integers

2013-02-20 Thread sympy
Comment #4 on issue 3657 by prasoon9...@gmail.com: Summation over non-integers http://code.google.com/p/sympy/issues/detail?id=3657 ** EDIT ** This can be done. I had misinterpreted the issue. I will get started with this right away and make a pull request soon. -- You received this messa

Re: Issue 3657 in sympy: Summation over non-integers

2013-02-20 Thread sympy
Comment #3 on issue 3657 by prasoon9...@gmail.com: Summation over non-integers http://code.google.com/p/sympy/issues/detail?id=3657 This method will not work if f is non linear. For instance, summation(f, (i, 0, 1, 0.2)) [0.2 is step] = f(0.2) + f(0.4) + f(0.6) + f(0.8) + f(1.0) Now, if we s

Issue 3658 in sympy: hydrogen.py very slow

2013-02-20 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3658 by mario.pe...@gmail.com: hydrogen.py very slow http://code.google.com/p/sympy/issues/detail?id=3658 running the example hydrogen.py takes from 6 to 10 minutes on my computer; replacing ``pprint(Eq(i, i.doit()))`` wit

Re: Issue 3654 in sympy: (1 + x**2)**10000*O(x) hangs

2013-02-20 Thread sympy
Comment #2 on issue 3654 by asmeu...@gmail.com: (1 + x**2)**1*O(x) hangs http://code.google.com/p/sympy/issues/detail?id=3654 Apparently one just needs to call series with the correct number of terms. -- You received this message because this project is configured to send all issue notifi

Re: Issue 3656 in sympy: Fancy indexing in Matrix

2013-02-20 Thread sympy
Comment #3 on issue 3656 by mrock...@gmail.com: Fancy indexing in Matrix http://code.google.com/p/sympy/issues/detail?id=3656 That would solve the particular example but not the general problem X = Matrix(100, 100, lambda i,j: i+j) Y = Matrix([1,5,13,29], :) -- You received this message becaus

Re: Issue 3655 in sympy: nan in compute_innermost

2013-02-20 Thread sympy
Comment #2 on issue 3655 by smi...@gmail.com: nan in compute_innermost http://code.google.com/p/sympy/issues/detail?id=3655 That's a leftover, I believe, of making oo and Nan not be Rationals (3a1f8c2dbe1ee31e6a38bde66fec9d1658f89e12). So now those values need to be special cased. -- You r

Re: Issue 3223 in sympy: degree((x+1)**10000) takes too long

2013-02-20 Thread sympy
Comment #10 on issue 3223 by smi...@gmail.com: degree((x+1)**1) takes too long http://code.google.com/p/sympy/issues/detail?id=3223 Here's a more explicit example of what I showed above: def deg(e, s): ... try: ... return -e.subs(x,1/x).leadterm(x)[1] ... except: ... return e.sub

Re: Issue 3654 in sympy: (1 + x**2)**10000*O(x) hangs

2013-02-20 Thread sympy
Comment #1 on issue 3654 by smi...@gmail.com: (1 + x**2)**1*O(x) hangs http://code.google.com/p/sympy/issues/detail?id=3654 Does the same sort of fix for issue 3223 work here, too? -- You received this message because this project is configured to send all issue notifications to this add

Re: Issue 3656 in sympy: Fancy indexing in Matrix

2013-02-20 Thread sympy
Comment #2 on issue 3656 by smi...@gmail.com: Fancy indexing in Matrix http://code.google.com/p/sympy/issues/detail?id=3656 or just X.extract(range(X.rows)[::2], range(X.cols)) -- You received this message because this project is configured to send all issue notifications to this address. Yo

Re: Issue 3657 in sympy: Summation over non-integers

2013-02-20 Thread sympy
Comment #2 on issue 3657 by prasoon9...@gmail.com: Summation over non-integers http://code.google.com/p/sympy/issues/detail?id=3657 I'll look into this. -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your not

Re: Issue 3656 in sympy: Fancy indexing in Matrix

2013-02-20 Thread sympy
Comment #1 on issue 3656 by smi...@gmail.com: Fancy indexing in Matrix http://code.google.com/p/sympy/issues/detail?id=3656 X.extract([0,2],range(3)) [0, 1, 2] [6, 7, 8] But I think extract could be made to accept a slice so you could do X.extract(::2, :). -- You received this message bec

Re: Issue 3646 in sympy: Weird solution of x**y = 0

2013-02-20 Thread sympy
Comment #10 on issue 3646 by smi...@gmail.com: Weird solution of x**y = 0 http://code.google.com/p/sympy/issues/detail?id=3646 FYI, when you have questions about whether two expressions are equal you might try test_numerically from randtest and the equals method: test_numerically(0**(1/y),0

Re: Issue 3638 in sympy: Automatic series expansion while applying a function?

2013-02-20 Thread sympy
Comment #9 on issue 3638 by skirpic...@gmail.com: Automatic series expansion while applying a function? http://code.google.com/p/sympy/issues/detail?id=3638 What's a reasonable cutoff for factorial? I don't think there is, sounds like a joke. Yes, it's just a bug. It isn't implemented as

Re: Issue 2969 in sympy: sqrt(sin(x)).series(x, 0, 7) is wrong

2013-02-20 Thread sympy
Comment #5 on issue 2969 by skirpic...@gmail.com: sqrt(sin(x)).series(x, 0, 7) is wrong http://code.google.com/p/sympy/issues/detail?id=2969 This looks same: http://code.google.com/p/sympy/issues/detail?id=3626 -- You received this message because this project is configured to send all is