Plotting module

2007-12-26 Thread [EMAIL PROTECTED]
I have been using sympy for some time now. Thank you guys for creating such an awesome piece of software. Lately, I have been playing with the plotting module and I have some suggestions... I tried to add some code on the plot module that would make it possible to recognize and plot geometrical

Re: Plotting module

2007-12-27 Thread Ondrej Certik
Hi, On Dec 27, 2007 6:12 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I have been using sympy for some time now. Thank you guys for creating > such an awesome piece of software. Lately, I have been playing with > the plotting module and I have some suggestions... Aweso

Re: Plotting module

2007-12-29 Thread Ondrej Certik
tware. Lately, I have been playing with > > the plotting module and I have some suggestions... > > Awesome, we welcome all suggestions. > > > I tried to add some code on the plot module that would make it > > possible to recognize and plot geometrical entities from the

Re: Plotting module

2007-12-29 Thread [EMAIL PROTECTED]
Ok, to be able to plot geometric entities I added the following code to plot.py 16 from sympy.geometry.entity import GeometryEntity 219 self[0] = fargs replaced by self.__setitem__(0, fargs) Then I added some code for parsing the GeometryEntity objects in the __setitem__ function as 275 def __s

Re: Plotting module

2007-12-30 Thread Ondrej Certik
On Dec 30, 2007 8:32 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Ok, to be able to plot geometric entities I added the following code > to plot.py > > 16 from sympy.geometry.entity import GeometryEntity > 219 self[0] = fargs replaced by self.__setitem__(0, fargs) > > Then I added some co

Re: Plotting module

2007-12-30 Thread Ondrej Certik
On Dec 30, 2007 1:59 PM, Ondrej Certik <[EMAIL PROTECTED]> wrote: > > On Dec 30, 2007 8:32 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Ok, to be able to plot geometric entities I added the following code > > to plot.py > > > > 16 from sympy.geometry.entity import GeometryEntity > > 2

Re: Plotting module

2007-12-30 Thread [EMAIL PROTECTED]
Ok, for the patch of the issue 517 regarding the tangent line that I opened I did the following. hg clone http://hg.sympy.org/sympy/ and I copied the corrected ellipse.py to /sympy/geometry/ Then, 1 cd sympy 2 hg di 3 hg ci --user [EMAIL PROTECTED] never used vim, so I struggled a bit but fina

Re: Plotting module

2007-12-30 Thread Ondrej Certik
> Ok, for the patch of the issue 517 regarding the tangent line that I > opened I did the following. > > hg clone http://hg.sympy.org/sympy/ > and I copied the corrected ellipse.py to /sympy/geometry/ > > Then, > 1 cd sympy > 2 hg di > 3 hg ci --user [EMAIL PROTECTED] > never used vim, so I stru

Re: Plotting module

2007-12-31 Thread [EMAIL PROTECTED]
file:///home/saroj/Programming/sympy/plotting.patch Here you go. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com To unsubscribe from this gr

Re: Plotting module

2007-12-31 Thread [EMAIL PROTECTED]
I didn't find any option to upload a file. I tried drag and drop but it didn't work. So, I have to copy-paste the plotting.patch file. # HG changeset patch # User Saroj <[EMAIL PROTECTED]> # Date 1199129707 21600 # Node ID 893074769cc1f0b8eb0c35efc8eb6cebe2faa1a7 # Parent 1ee1a59b01a6fa6ec1b0bf5

Re: Plotting module

2008-02-06 Thread Ondrej Certik
I completely forgot about this patch, sorry about that! I created an issue for this: http://code.google.com/p/sympy/issues/detail?id=682 which will be integrated in the next release. I'll take care of this one personally. :) Only, I don't understand, why the patch doesn't want to apply: $ hg u

[sympy] Plotting module

2021-05-03 Thread sandona...@gmail.com
Hello everyone, I created a slightly improved plotting module for SymPy, which can be found at the following location [1]. It supports different plotting libraries (Plotly, Bokeh, K3D, Mayavi) and, most importantly, we can easily create widgets-interactive plots to explore parametric symbolic

[sympy] implicit plotting module

2012-06-22 Thread Bharath M R
Hi, There is an implementation of implicit plotting at PR 1370. The PR currently supports the following functions: sin, cos, exp, tan, asin, acos, atan, sinh, cosh, tanh, asinh, acosh, atanh, floor, ceiling, max, min, log , exp, sqrt, and powers to integers. I will add powers to floating poi

[sympy] Re: Plotting module

2021-05-03 Thread gu...@uwosh.edu
: > Hello everyone, > > I created a slightly improved plotting module for SymPy, which can be > found at the following location [1]. It supports different plotting > libraries (Plotly, Bokeh, K3D, Mayavi) and, most importantly, we can easily > create widgets-interactive plots to

Re: [sympy] Plotting module

2021-05-03 Thread Aaron Meurer
Thank you for sharing. Do you think this is something you'd like to see integrated into SymPy's plotting module eventually? Aaron Meurer On Mon, May 3, 2021 at 3:18 PM sandona...@gmail.com wrote: > > Hello everyone, > > I created a slightly improved plotting module for Sym

Re: [sympy] Plotting module

2021-05-03 Thread Aaron Meurer
see integrated into SymPy's plotting module eventually? > > Aaron Meurer > > On Mon, May 3, 2021 at 3:18 PM sandona...@gmail.com > wrote: > > > > Hello everyone, > > > > I created a slightly improved plotting module for SymPy, which can be found > &g

Re: [sympy] Plotting module

2021-05-04 Thread Davide Sandona'
> > Thank you for sharing. Do you think this is something you'd like to > see integrated into SymPy's plotting module eventually? > I think it would benefit a lot of users, but it's too soon to talk about integration because I'm still thinking about what needs

Re: [sympy] Plotting module

2021-05-04 Thread Nicolas Guarin
his is something you'd like to >> see integrated into SymPy's plotting module eventually? >> > > I think it would benefit a lot of users, but it's too soon to talk about > integration because I'm still thinking about what needs to be added and > wha

Re: [sympy] Plotting module

2021-05-04 Thread Oscar Benjamin
On Tue, 4 May 2021 at 18:00, Davide Sandona' wrote: >> >> Thank you for sharing. Do you think this is something you'd like to >> see integrated into SymPy's plotting module eventually? > > I think it would benefit a lot of users, but it's too soon to

[sympy] testing the plotting module

2012-01-22 Thread krastanov.ste...@gmail.com
Hi, I've started writing tests for the new plotting module, but as expected there may be problems when comparing images created by different computers. Matplotlib has a testing routine that uses PIL to "approximately" compare two images but it uses python-nose. What do you think

Re: [sympy] implicit plotting module

2012-06-23 Thread Aaron Meurer
Will exponentials of non-base E be supported, like 2**x or x**y? Aaron Meurer On Jun 22, 2012, at 10:57 PM, Bharath M R wrote: Hi, There is an implementation of implicit plotting at PR 1370. The PR currently supports the following functions: sin, cos, exp, tan, asin, acos, atan, sinh, cosh,

Re: [sympy] implicit plotting module

2012-06-23 Thread krastanov.ste...@gmail.com
in the solver. You may use sympy to generate code for the implicit plotting module: this will be really cool! -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from thi

Re: [sympy] implicit plotting module

2012-06-23 Thread bharath M R
@Aaron As Stefan mentioned, it can be rewritten into exp(log(x) * y) and hence will be supported. On Sat, Jun 23, 2012 at 4:49 PM, krastanov.ste...@gmail.com < krastanov.ste...@gmail.com> wrote: > > Will exponentials of non-base E be supported, like 2**x or x**y? > It may be best to rewrite it in

Re: [sympy] implicit plotting module

2012-06-23 Thread krastanov.ste...@gmail.com
> Thats actually a nice way to do it. But it will depend on how good is the > sympy > solver. I will give it a try. The solver is not very reliable. However, please file an issue for each function that *you* can implement and at the same time the solver fails to help you. I suppose that you may al

[sympy] Plotting Module for Sympy

2014-01-17 Thread Nitin Agarwal
Hi, As I was trying to put my hands on improving the plotting module for sympy Gamma, I could not get an idea for what all functions the plots are being plotted on Sympy Gamma both 2D and 3D plots. After going through the ideas list there are lots of things that needs to be done for improving

[sympy] Improving the Plotting module

2015-01-02 Thread Shivam Vats
cently while looking into the plotting module I realised that there is a lot of work to do in it. The rationale for this post is to clear my doubts and get everyone's views regarding the issues in the plotting module. I'd appreciate any help. ISSUES/BUGS 1) Sympy can't interpret the

[sympy] Re: testing the plotting module

2012-01-22 Thread krastanov.ste...@gmail.com
...@gmail.com wrote: > Hi, > > I've started writing tests for the new plotting module, but as > expected there may be problems when comparing images created by > different computers. > > Matplotlib has a testing routine that uses PIL to "approximately" > compare t

Re: [sympy] Plotting Module for Sympy

2014-01-19 Thread Stefan Krastanov
Sympy Gamma and Sympy are not the same thing. Sympy has a plotting module that can use multiple backends, but only the matplotlib backend is mature enough (and the only one provided with sympy besides a small text-based backend). There is an example d3js backend but it is far from ready for use

Re: [sympy] Plotting Module for Sympy

2014-01-21 Thread Nitin Agarwal
> Sympy has a plotting module that can use multiple backends, but only the > matplotlib backend > is mature enough (and the only one provided with sympy besides a small > text-based backend). > In the Documentation of Sympy, It is mentioned that Sympy currently uses matplotlib modul

Re: [sympy] Improving the Plotting module

2015-01-30 Thread Aaron Meurer
for over a few months. Though I've not decided > on my proposal, recently while looking into the plotting module I realised > that there is a lot of work to do in it. The rationale for this > post is to clear my doubts and get everyone's views regarding the issues > in the

[sympy] Re: Improving the Plotting module

2015-02-05 Thread Shivam Vats
d then get suggestions as to what more the community wants the plotting module to do. Given that Sympy's plotting isn't very sophisticated, I think it's important to know what sort of capabilities are desired. -- You received this message because you are subscribed to the Goo

[sympy] GSOC 2011: Improve the plotting module

2011-03-23 Thread Viktor
nt to improve the Sympy plotting module and add ability to use other plotting backends. As minimum I can integrate Sympy with matplotlib. Can I take participate in GSOC from Sympy Community with this Idea? Thanks, Viktor. -- You received this message because you are subscribed to the Google G

[sympy] GSoC 2011: improve the plotting module

2011-03-26 Thread Tomáš Bambas
improve plotting module (implement matplotlib backend and module for generating google chart link; also solve pyglet issues). Community can tell what next chart API should be supported, but implementing matplotlib backend is my priority. I have experiences with Python in small commercial projects, but

Re: [sympy] Re: testing the plotting module

2012-02-18 Thread Aaron Meurer
thon-nose is not installed). We may rip it (it is under BDS) but > that way it will not be updated on new versions of matplotlib. > > On 22 January 2012 14:19, krastanov.ste...@gmail.com > wrote: >> Hi, >> >> I've started writing tests for the new plotting modu

Re: [sympy] Re: testing the plotting module

2012-02-18 Thread krastanov.ste...@gmail.com
t >> that way it will not be updated on new versions of matplotlib. >> >> On 22 January 2012 14:19, krastanov.ste...@gmail.com >> wrote: >>> Hi, >>> >>> I've started writing tests for the new plotting module, but as >>> expected the

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

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

[sympy] Re: The plotting module got merged

2012-06-12 Thread Julien Rioux
On Jun 11, 10:39 pm, "krastanov.ste...@gmail.com" wrote: > Hi all, > > The plotting module on which I have been working some time ago got > merged (thanks Chris and thanks to all the reviewers). Congratulations! But, pulling this in from the main repo brought a test

[sympy] SymPy 0.7.2 new plotting module bugs

2013-01-22 Thread Roberto Colistete Jr.
Em 22-01-2013 22:23, Aaron Meurer escreveu: You'll need to do this first (before importing SymPy) because of a SymPy bug where importing SymPy imports matplotlib and already sets the backend (see http://code.google.com/p/sympy/issues/detail?id=3427). Aaron Meurer About SymPy always loadi

[sympy] GSoC 2014: Improving the plotting module

2014-02-25 Thread Ambar Mehrotra
Hi, I am Ambar Mehrotra, a student at Birla Institute of Technology and Sciences (BITS Pilani) university. I am pursuing Msc. (Tech.) Informations Systems currently in my 2nd year. I am interseted in applying for GSoC 2014 under SymPy's banner. I have a descent experience with python and i hav

[sympy] GSoC 16: Improve the plotting module

2016-03-02 Thread Prachi Agrawal
Hello, I am Prachi, a second year undergraduate student pursuing Computer Science at IIIT Hyderabad. I found the "Improve the plotting module for sympy" project very interesting and therefore want to contribute to it for GSoC this year. I have a decent knowledge of Python, C, C++,

[sympy] GSoC 2016: Improve the plotting module

2016-03-22 Thread Ryan McCampbell
Hello, I am Ryan McCampbell, a Computer Science student at the University of Virginia. I am interested in working on improving the sympy plotting library, as mentioned at https://github.com/sympy/sympy/wiki/GSoC-2016-Ideas#improve-the-plotting-module. I am not sure if I can do some of the

Re: [sympy] GSOC 2011: Improve the plotting module

2011-03-23 Thread Aaron S. Meurer
Yes, fixing our plotting module is something that we need to have done. We currently ship with Pyglet, but it would be better if we modularized our plotting module to work with matplotlib, pyglet, etc. as external libraries. Just a note: to participate in GSoC, we require that you submit a

Re: [sympy] GSoC 2011: improve the plotting module

2011-03-26 Thread Aaron S. Meurer
chnology in Czech Republic. My > faculty focus on programming (C/C++, java, python, php, perl, and many > more). > > I would like to participate in GSoC 2011. Exactly I would like to > improve plotting module (implement matplotlib backend and module for > generating google c

Re: [sympy] GSoC 2011: improve the plotting module

2011-03-26 Thread Ondrej Certik
perl, and many > more). Welcome! > > I would like to participate in GSoC 2011. Exactly I would like to > improve plotting module (implement matplotlib backend and module for > generating google chart link; also solve pyglet issues). Community can > tell what next chart API shou

[sympy] Re: GSoC 2011: improve the plotting module

2011-03-26 Thread Tomáš Bambas
I see. You need a new solid Plot() interface linkable to multiple backends and a sympy user could set which backend should be used (if backend installed). Please correct me if I'm wrong :) -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this

[sympy] Interested in Plotting module and GSoC 2012

2012-03-16 Thread Vishesh Kumar
I am interested in working at the equation editor task and/or improving the plotting module, as possible projects for GSoC 2012. I would love to know how to start out with either, and what aspects I should approach. With regard to the plotting module, it seems like a vast thing in entirety, but I

[sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread Bharath M R
Hi, I am Bharath M R and I will be working on the implicit plotting module as part of GSoC this year. I will be basing my work on Stefan's pull request [1]. So I would like to get it merged before I start working on my project. This will help me to have regular atomic pull requests throu

[sympy] Review for pull requests on plotting module

2012-05-25 Thread Bharath M R
Hi, My GSoC project will be heavily based on Stefan's pull request for plotting [1]. As the pull request has not been merged, I have been sending pull requests to his branch. Can you please help review [2] which deals with complex values plotting and [3] which deals with adaptive sampling f

Re: [sympy] Re: The plotting module got merged

2012-06-12 Thread krastanov.ste...@gmail.com
There are 3 tests failures in master at the moment: 2.5-3.2: a test in jscode that was ok the last time that it was tested, however master has changed just before the merge of jscode. I will send a pull request with a fix in a few minutes. 2.7: a test in the plotting module. This test will not

Re: [sympy] Re: The plotting module got merged

2012-06-12 Thread krastanov.ste...@gmail.com
scode generator (my bad not to check for changes in master). It is fixed now. > 2.7: a test in the plotting module. This test will not run unless you > have installed the dev version of matplotlib. You can merge this > PR1345 in order to fix it. I am waiting for a green flag to mer

Re: [sympy] Re: The plotting module got merged

2012-06-12 Thread Chris Smith
>> 3.2: a failure in some quantum stuff related to the random number >> generator changes in python > Still a problem. 4 solutions are proposed in http://code.google.com/p/sympy/issues/detail?id=3282 -- You received this message because you are subscribed to the Google Groups "sympy" group. To

Re: [sympy] Re: The plotting module got merged

2012-06-15 Thread Chris Smith
BTW, you have a note about the ugly code to replace when we drop 2.5. For it you could use set_union from core.compatibility. (There is a set_intersection implemented there, too, and use of them will lead to self-updating code wherever they are used instead of writting the hack like you did.) /c

Re: [sympy] Re: The plotting module got merged

2012-06-15 Thread krastanov.ste...@gmail.com
On 15 June 2012 09:51, Chris Smith wrote: > BTW, you have a note about the ugly code to replace when we drop 2.5. > For it you could use set_union from core.compatibility. (There is a > set_intersection implemented there, too, and use of them will lead to > self-updating code wherever they are use

Re: [sympy] Re: The plotting module got merged

2012-06-15 Thread Chris Smith
I'll just make it part of that request. And I'm about to disappear of the radar for a while as I will be traveling to (and then around) the US for the next month. -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to symp

Re: [sympy] SymPy 0.7.2 new plotting module bugs

2013-01-22 Thread Aaron Meurer
modify how the plotting module works (see the issue page for some ideas). For numpy, there are three or four modules that import it, so they would all have to be fixed. The tricky thing, as I said, is that we have to move all the matplotlib/numpy imports inside function calls, rather than at the module

[sympy] Sympy Project Idea : Improve the Plotting Module

2014-02-10 Thread Nitin Agarwal
I would like to discuss about the Project Idea Improve the Plotting Module being proposed on the Sympy Gsoc 2014 Ideas List. I am glad to hear Stefan is willing to mentor this project. I am looking forward to contribute to Sympy by working on this project idea as part of the upcoming Summer of

[sympy] Re: GSoC 2014: Improving the plotting module

2014-02-26 Thread Ambar Mehrotra
Someone please help me get started with the development. What all topics need immediate attention in the plotting module so that i can start working on it right away? -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from

[sympy] GSoC 2015: Improvements to the Plotting Module.

2015-03-03 Thread Param Singh
Hi, I'm Param Singh, an undergrad from India and I was hoping on working on Sympy's plotting module over the course of the summer as a GSoC project. I wished to gauge the community's interest in this and talk to potential mentors over what work needs to be done on it. The current

Re: [sympy] GSoC 16: Improve the plotting module

2016-03-05 Thread Jason Moore
> I am Prachi, a second year undergraduate student pursuing Computer Science > at IIIT Hyderabad. I found the "Improve the plotting module for sympy" > project very interesting and therefore want to contribute to it for GSoC > this year. I have a decent knowledge of Pyt

Re: [sympy] GSoC 16: Improve the plotting module

2016-03-10 Thread Prachi Agrawal
; > Jason > moorepants.info > +01 530-601-9791 > > On Wed, Mar 2, 2016 at 9:02 AM, Prachi Agrawal > wrote: > >> Hello, >> >> I am Prachi, a second year undergraduate student pursuing Computer >> Science at IIIT Hyderabad. I found the "Improve the

[sympy] Re: GSoC 2016: Improve the plotting module

2016-03-22 Thread Ryan McCampbell
py/sympy/wiki/GSoC-2016-Ideas#improve-the-plotting-module. > > I am not sure if I can do some of the hard tasks, but I have experience > with matplotlib and think I could implement many or at least some of the > suggested features. How many of these do you think would be reasonable

[sympy] Re: GSoC 2016: Improve the plotting module

2016-03-23 Thread James Milam
I believe it is just code to demonstrate your work process, however, if you can relate it to your project you'll have a better understanding of the relevant code that you will need to talk about in your proposal. -- You received this message because you are subscribed to the Google Groups "sy

Re: [sympy] Re: GSoC 2011: improve the plotting module

2011-03-26 Thread Ondrej Certik
On Sat, Mar 26, 2011 at 2:57 PM, Tomáš Bambas wrote: > I see. You need a new solid Plot() interface linkable to multiple > backends and a sympy user could set which backend should be used (if > backend installed). Please correct me if I'm wrong :) You are exactly right. Ondrej -- You received

Re: [sympy] Interested in Plotting module and GSoC 2012

2012-03-16 Thread Aaron Meurer
/or improving the > plotting module, as possible projects for GSoC 2012. > I would love to know how to start out with either, and what aspects I should > approach. With regard to the plotting module, it seems like a vast thing in > entirety, but I don't know if we'd be require

Re: [sympy] Interested in Plotting module and GSoC 2012

2012-03-16 Thread krastanov.ste...@gmail.com
You should check the mailing list archive as a potential gsoc project on the plotting module was discussed a number of times. A list of things to do are present in the gsoc-ideas page as well as in the comments on the pull request page. The code still has not been reviewed (it is quite long and I

Re: [sympy] Interested in Plotting module and GSoC 2012

2012-03-16 Thread Vishesh Kumar
wrote: > > You should check the mailing list archive as a potential gsoc project > on the plotting module was discussed a number of times. A list of > things to do are present in the gsoc-ideas page as well as in the > comments on the pull request page. The code still has not been >

Re: [sympy] Interested in Plotting module and GSoC 2012

2012-03-16 Thread Aaron Meurer
1 UTC+5:30, Stefan Krastanov wrote: >> >> You should check the mailing list archive as a potential gsoc project >> on the plotting module was discussed a number of times. A list of >> things to do are present in the gsoc-ideas page as well as in the >> comments on the pul

[sympy] Re: Interested in Plotting module and GSoC 2012

2012-03-23 Thread Vishesh Kumar
interested in working at the equation editor task and/or improving > the plotting module, as possible projects for GSoC 2012. > I would love to know how to start out with either, and what aspects I > should approach. With regard to the plotting module, it seems like a vast > thing in en

[sympy] Re: Interested in Plotting module and GSoC 2012

2012-04-08 Thread Vishesh Kumar
Alpha, that shouldn't be the case. How can one define Q.algebraic for general trigonometric functions of this sort? Regards Vishesh Kumar On Saturday, 17 March 2012 01:34:43 UTC+5:30, Vishesh Kumar wrote: > > I am interested in working at the equation editor task and/or improving &g

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread krastanov.ste...@gmail.com
Hi Bharath, First of all, what should I do to add you as a collaborator to the pull request (I was not aware it was possible)? Second, we can meet on IRC or skype so I can help you with reviewing the code. There is one big chunk of documentation missing and one important change still needs to be

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread krastanov.ste...@gmail.com
> > @Stefan Can you add me as an collaborator for the plotting module branch? Or > will it be better > if I send pull requests to your branch to fix the problems that come up? > I checked that. I think it would be better to send a pull request to my branch with your changes. -- Yo

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread krastanov.ste...@gmail.com
previous example #4 The ipython profile should be updated On 28 April 2012 16:31, krastanov.ste...@gmail.com wrote: >> >> @Stefan Can you add me as an collaborator for the plotting module branch? Or >> will it be better >> if I send pull requests to your branch to fix t

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread krastanov.ste...@gmail.com
There is also the problem with what to do when the result is a complex number. This is complicated, so I really hope that we can leave this question out at least for the moment. (the current behavior is to plot the real part of the expression) -- You received this message because you are subscrib

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-28 Thread Aaron Meurer
, Bharath M R wrote: > Hi, > I am Bharath M R and I will be working on the implicit plotting module as > part of GSoC this year. > I will be basing my work on Stefan's pull request [1]. So I would like to > get it merged before I start > working on my project. This will hel

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-29 Thread Bharath M R
On Saturday, April 28, 2012 7:49:34 PM UTC+5:30, Stefan Krastanov wrote: > > Hi Bharath, > > First of all, what should I do to add you as a collaborator to the > pull request (I was not aware it was possible)? > > Second, we can meet on IRC or skype so I can help you with reviewing > the code

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-29 Thread krastanov.ste...@gmail.com
> today on IRC around the same time ( 14:30 UTC). If you are busy, then we > can meet after your/ my exams. I will be having exams till the end of this > week. > I will look at the things that you mentioned, which has to be changed. It seems that we both have other more pressing work, so let's jus

Re: [sympy] Pull request review and testing (Plotting Module).

2012-04-29 Thread Bharath M R
Yeah sure. Will ping you on IRC in the weekend. On Sunday, April 29, 2012 4:06:56 PM UTC+5:30, Stefan Krastanov wrote: > > > today on IRC around the same time ( 14:30 UTC). If you are busy, then we > > can meet after your/ my exams. I will be having exams till the end of > this > > week. > > I

[sympy] naive D3.js backend for our plotting module

2013-05-14 Thread Stefan Krastanov
Hi all, I concorted a bare-bones D3.js backend for our plotting module that can be used in IPython. It is only a prototype (done in about 30 minutes), but it shows how simple it would be to add such a backend if somebody has the time. The blog post with details http://blog.krastanov.org/2013/05

Re: [sympy] Sympy Project Idea : Improve the Plotting Module

2014-02-15 Thread Stefan Krastanov
> Firstly I would like to discuss about writing/fixing/ extening the backends > for the plotting module > of Sympy. Currently Sympy makes use of pyglet for plotting 3D plots. For quite some time pyglet is not used. The code is still there, but the new plotting module does not use it. Th

Re: [sympy] Sympy Project Idea : Improve the Plotting Module

2014-02-15 Thread Nitin Agarwal
On Sun, Feb 16, 2014 at 5:57 AM, Stefan Krastanov wrote: > > Firstly I would like to discuss about writing/fixing/ extening the > backends > > for the plotting module > > of Sympy. Currently Sympy makes use of pyglet for plotting 3D plots. > > For quite some time pygl

Re: [sympy] Sympy Project Idea : Improve the Plotting Module

2014-02-15 Thread Nitin Agarwal
Could you Please list the task where shall I start off working as the first initial steps on this project idea improve the Plotting module for Sympy. *Nitin Agarwal* On Sun, Feb 16, 2014 at 6:06 AM, Nitin Agarwal wrote: > > > On Sun, Feb 16, 2014 at 5:57 AM, Stefan Krastanov < >

Re: [sympy] Sympy Project Idea : Improve the Plotting Module

2014-02-17 Thread Stefan Krastanov
>> >> > Firstly I would like to discuss about writing/fixing/ extening the >> > backends >> > for the plotting module >> > of Sympy. Currently Sympy makes use of pyglet for plotting 3D plots. >> >> For quite some time pyglet is not used. The co

Re: [sympy] Re: GSoC 2014: Improving the plotting module

2014-03-04 Thread Ondřej Čertík
one please help me get started with the development. What all topics > need immediate attention in the plotting module so that i can start working > on it right away? > > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. &g

[sympy] GSOC Proposal Web-Based backend for Plotting module

2014-03-20 Thread SAHIL SHEKHAWAT
I have drafted the outlines for the project according to the discussion and various suggestions by other experienced developers. you can look it here https://github.com/sympy/sympy/wiki/GSoC-2014-Application-Sahil-Shekhawat:-Web-based-backend-for-SymPy's-plotting-module-and-3D-plottin

Re: [sympy] GSoC 2015: Improvements to the Plotting Module.

2015-03-03 Thread Aaron Meurer
On Tue, Mar 3, 2015 at 10:23 AM, Param Singh wrote: > Hi, I'm Param Singh, an undergrad from India and I was hoping on working on > Sympy's plotting module over the course of the summer as a GSoC project. I > wished to gauge the community's interest in this and talk to

Re: [sympy] GSoC 2015: Improvements to the Plotting Module.

2015-03-03 Thread Param Singh
am Singh > wrote: > > Hi, I'm Param Singh, an undergrad from India and I was hoping on working > on > > Sympy's plotting module over the course of the summer as a GSoC project. > I > > wished to gauge the community's interest in this and talk to potent

[sympy] Interested in topic Improve Plotting Module GSoC-2018

2018-03-13 Thread Malkhan Singh Rathaur
I have some questions:- 1. It is mentioned in the project detail here https://github.com/sympy/sympy/wiki/GSoC-2018-Ideas#improve-the-plotting-module that need some kind of GUI using matplotlib.widgets. So, *What is the objective to use matplotlib.widgets in the graph?* Is it for *zooming* the

[sympy] Re: GSoC 2015: Improvements to the Plotting Module.

2015-03-23 Thread Param Singh
I have posted my application here: https://github.com/sympy/sympy/wiki/GSOC-2015-Application-Param-Singh-:-Improving-Sympy%27s-plotting-module-by-adding-Mayavi-and-d3.js-backends I would appreciate feedback and reviews, please. On Tuesday, 3 March 2015 16:32:30 UTC, Param Singh wrote: > &

Re: [sympy] Re: GSoC 2016: Improve the plotting module

2016-03-23 Thread Aaron Meurer
ng library, as >> mentioned at >> https://github.com/sympy/sympy/wiki/GSoC-2016-Ideas#improve-the-plotting-module. >> I am not sure if I can do some of the hard tasks, but I have experience with >> matplotlib and think I could implement many or at least some of the >>

Re: [sympy] Re: GSoC 2016: Improve the plotting module

2016-03-23 Thread Ryan McCampbell
Hello, I am Ryan McCampbell, a Computer Science student at the > University > >> of Virginia. > >> I am interested in working on improving the sympy plotting library, as > >> mentioned at > >> > https://github.com/sympy/sympy/wiki/GSoC-2016-Ideas#improv

Re: [sympy] Re: GSoC 2016: Improve the plotting module

2016-03-23 Thread Aaron Meurer
Yep, that is correct. Aaron Meurer On Wed, Mar 23, 2016 at 12:23 PM, James Milam wrote: > I believe it is just code to demonstrate your work process, however, if you > can relate it to your project you'll have a better understanding of the > relevant code that you will need to talk about in your

[sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Anton Makarov
Hi, i need to save figure from svg plotting module as svg string in order to insert it latter in my web application. At the moment i can only save plot as svg file: from sympy import symbols from sympy.plotting import plot x = symbols('x') p1 = plot(x, x**2, x**3, (x, 0, 6), show =

[sympy] Re: Help with review of the new plotting module.

2012-01-12 Thread krastanov.ste...@gmail.com
I've made a number of bug fixes and added quite a few examples. Unless there is a part that you don't like the api should be stable. The issue about inclusion is code.google.com/p/sympy/issues/detail?id=2845. I'll change the milestone to 0.7.2. If you do not agree please comment and change it in t

Re: [sympy] Re: Interested in Plotting module and GSoC 2012

2012-03-23 Thread Aaron Meurer
orking on an equation > editor work as an entire GSoC project? In any way, I would be grateful to > receive some direction on how to start off with that (the equation editor). > > Regards > Vishesh Kumar > > > On Saturday, 17 March 2012 01:34:43 UTC+5:30, Vishesh Kumar wrote:

  1   2   >