Re: [sympy] The plotting module got merged

2012-06-11 Thread Aaron Meurer
Git doesn't care if content is in one file or in separate files, so I wouldn't split the file simply for its sake. Of course, unwieldy files are harder for us humans to navigate, so there are other reasons to do it as well. Aaron Meurer On Jun 11, 2012, at 3:06 PM, "krastanov.ste...@gmail.com"

Re: [sympy] The plotting module got merged

2012-06-11 Thread krastanov.ste...@gmail.com
By the way, the matplotlib team will soon be making a release so the problem with 3d plots will be fixed. http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.1/ -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this gro

Re: [sympy] The plotting module got merged

2012-06-11 Thread krastanov.ste...@gmail.com
> I suspect now that the major PR is in master development on this module can > happen in a more distributed manner. Maybe it will be a good idea if someone cuts the big plot.py file in smaller ones in order to prevent merge conflicts. -- You received this message because you are subscribed to t

Re: [sympy] The plotting module got merged

2012-06-11 Thread Matthew Rocklin
This is awesome. I suspect now that the major PR is in master development on this module can happen in a more distributed manner. On Mon, Jun 11, 2012 at 3:54 PM, Ondřej Čertík wrote: > On Mon, Jun 11, 2012 at 1:47 PM, Chris Smith wrote: > >> === removing the free variables (eg `plot(x*y, (0,2

Re: [sympy] The plotting module got merged

2012-06-11 Thread Ondřej Čertík
On Mon, Jun 11, 2012 at 1:47 PM, Chris Smith wrote: >> === removing the free variables (eg `plot(x*y, (0,2), (0,2))`) will >> detect them automatically > > This is ambiguous: `plot(x*y,(-1,1),(0,2))` which range is x and which > y? Rather than guess, if the length-2 tuples are not the same I think

Re: [sympy] The plotting module got merged

2012-06-11 Thread krastanov.ste...@gmail.com
>> === removing the free variables (eg `plot(x*y, (0,2), (0,2))`) will >> detect them automatically > > This is ambiguous: `plot(x*y,(-1,1),(0,2))` which range is x and which > y? Rather than guess, if the length-2 tuples are not the same I think > an error should be raised. I am not completely su

Re: [sympy] The plotting module got merged

2012-06-11 Thread Chris Smith
> === removing the free variables (eg `plot(x*y, (0,2), (0,2))`) will > detect them automatically This is ambiguous: `plot(x*y,(-1,1),(0,2))` which range is x and which y? Rather than guess, if the length-2 tuples are not the same I think an error should be raised. -- You received this message b