Re: [sympy] Using commands from SymPy website

2019-06-26 Thread Aaron Meurer
I imagine this is fixable in the Javascript. We need to make the live shell action not happen when there is a selection. Aaron Meurer On Wed, Jun 26, 2019 at 5:06 PM Oscar Benjamin wrote: > > Hi David, > > This isn't a trivial point. I just checked to see what you mean and it > is annoying. I

[sympy] Several Complex Variables Calculator

2019-06-26 Thread Thomas Toseland
Hi All, I have been reading through some books recently on SCV theory (Several Complex Variables), and I was wondering, is it possible to make a calculator to evaluate integrals, that have more than 1 complex variable in them (in Complex Space rather than in the plane)? This is particularly

Re: [sympy] Using commands from SymPy website

2019-06-26 Thread Oscar Benjamin
Hi David, This isn't a trivial point. I just checked to see what you mean and it is annoying. I think that there should be a way to copy to clipboard or access the raw code. I don't see how to do it though... Unless someone else knows I think you should open an issue. -- Oscar On Wed, 26 Jun

[sympy] Using commands from SymPy website

2019-06-26 Thread David Bailey
Sorry for raising a rather trivial point, but I am often frustrated by the fact that if you visit a page such as https://docs.sympy.org/latest/tutorial/manipulation.html, and try to select some of the code with a view to copy/pasting it, you are instantly moved to the SymPy Live Shell. There

Re: [sympy] Get permtutation count when using multiset_partitions

2019-06-26 Thread Joan
Thanks Aaron, I couldn't check on your suggestions until today, they worked great :D Joan Missatge de Aaron Meurer del dia dl., 17 de juny 2019 a les 22:48: > The docstring of multiset_partitions describes how to count > partitions. It mentions the nT function, but not where to get it. It's >

[sympy] Could I use SymPy to simplify category equations?

2019-06-26 Thread Pauli Rikula
Could the underlying equation simplifying mechanisms be used to simplify category equations on a library I made https://github.com/kummahiih/python-category-equations ? Is there some set of abstract classes I could try to implement in order to get the thing done? Thanks for your time and

Re: [sympy] Grid in sympy plotting

2019-06-26 Thread Oscar Benjamin
Hi Lee, SymPy's plotting module uses matplotlib so it is reasonable to use the matplotlib API for adding a grid. I just tried this and it works fine: In [1]: plot(x**2) Out[1]: In [2]: from matplotlib.pyplot import grid In [3]: grid() Oscar On Wed, 26 Jun 2019 at 01:59, Lee Smith wrote: >

Re: [sympy] Parse Latex doesn't understand '\sqrt[a]{b}'

2019-06-26 Thread HRISHABH YADAV
Yeah sure! On Tuesday, June 25, 2019 at 11:45:02 PM UTC+5:30, Aaron Meurer wrote: > > The latex parsing is still pretty new. It should not be hard to add > support for this. Please open an issue on the issue tracker. > > Aaron Meurer > > On Tue, Jun 25, 2019 at 11:13 AM HRISHABH YADAV >