Re[2]: Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Антон Макаров
Thanks, i’ve already solve the problem… Отправлено из мобильной Почты Mail.ru понедельник, 21 ноября 2022 г., 19:52 +0300 от oscar.j.benja...@gmail.com : >I don't know how you get the handle to the matplotlib figure but there >should be some way to do it. > >On Mon, 21 Nov 2022 at 14:01,

Re: Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Oscar Benjamin
I don't know how you get the handle to the matplotlib figure but there should be some way to do it. On Mon, 21 Nov 2022 at 14:01, Антон Макаров wrote: > > Thank you for answer. As far as I can understand the p1 variable in my sample > code is the object of mathplotlib library, right? > > > >

Re[2]: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Антон Макаров
Thank you for answer. As far as I can understand the p1 variable in my sample code is the object of mathplotlib library, right? Отправлено из мобильной Почты Mail.ru понедельник, 21 ноября 2022 г., 16:51 +0300 от oscar.j.benja...@gmail.com : >SymPy's save function is just using matplotlib

Re: [sympy] Sympy plotting module save figure as svg string

2022-11-21 Thread Oscar Benjamin
SymPy's save function is just using matplotlib so the question is not really about SymPy but about matplotlib: https://stackoverflow.com/questions/5453375/matplotlib-svg-as-string-and-not-a-file Oscar On Mon, 21 Nov 2022 at 10:57, Anton Makarov wrote: > > Hi, i need to save figure from svg

[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 = False)

[sympy] Plotting

2021-11-10 Thread brombo
This is a subject that is more general than sympy but is relevant to sympy and I don't know where else to ask this question. For plotting in sympy and python for that matter we pretty much make do with mathplotlib. The software package Asymptote https://asymptote.sourceforge.io/ is much

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 talk about > integration because I'm still

Re: [sympy] Plotting module

2021-05-04 Thread Nicolas Guarin
This is great and the quality of the 3D plots is incredible. Regarding the backends, did you try PyVista? That one is also based on VTK and it works nicely in MyBinder. Nicolás On Tuesday, May 4, 2021 at 12:00:25 PM UTC-5 sandona...@gmail.com wrote: > Thank you for sharing. Do you think this

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 to be added and what needs to be

Re: [sympy] Plotting module

2021-05-03 Thread Aaron Meurer
Also I would suggest setting up some sort of Binder for the notebooks so that people can try this out without having to install everything. Aaron Meurer On Mon, May 3, 2021 at 4:40 PM Aaron Meurer wrote: > > Thank you for sharing. Do you think this is something you'd like to > see integrated

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 SymPy, which can be found

[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] Work on sympy plotting issues

2021-02-23 Thread vb...@lakeheadu.ca
Hi all, I came across a couple of plotting issues for which I would like to work on potential solutions. I had commented on a couple of these similar kind of plot issues on github, but did not get a follow up on it yet. Is there anyone who can help me to solve these plotting issues? I can

[sympy] Plotting Singularity function using sympy.plot()

2019-07-27 Thread Ishan Anirudh Joshi
This is how impulse function or the singularity function with negative exponents behaves currently >>> plot(SingularityFunction(x, 1, -1)) # can be written as: Piecewise((oo, Eq(x - 1, 0)), (0, True)) [image: Screenshot - 27-07-2019 , 13_55_01.png] This

Re: [sympy] Grid in sympy plotting

2019-06-27 Thread Aaron Meurer
If you want advanced plotting things in SymPy it's often easier to plot your function directly with matplotlib using something like import numpy as np import matplotlib.pyplot as plt a = np.linspace(-10, 10, 1000) # Replace with your desired range and number of points f = sympy.lambdify(x, expr)

Re: [sympy] Grid in sympy plotting

2019-06-27 Thread Lee Smith
Yep. Well I will continue to look into this. Of course, if I just did everything in matplotlib ... no problemo CODE ON ! On Thu, Jun 27, 2019 at 11:59 AM Oscar Benjamin wrote: > I guess it depends what environment you use (I used ipython). Looks like > you're using Jupyter and I'm not sure

Re: [sympy] Grid in sympy plotting

2019-06-27 Thread Oscar Benjamin
I guess it depends what environment you use (I used ipython). Looks like you're using Jupyter and I'm not sure how to plotting works there. On Thu, 27 Jun 2019 at 19:24, Lee Smith wrote: > Thank you ! > > Actually I tried this and got TWO graphs. One just the grid then the > functions! >

Re: [sympy] Grid in sympy plotting

2019-06-27 Thread Lee Smith
Thank you ! Actually I tried this and got TWO graphs. One just the grid then the functions! Suggestions? [image: Sympy_grid.PNG] On Wed, Jun 26, 2019 at 3:26 AM Oscar Benjamin wrote: > Hi Lee, > > SymPy's plotting module uses matplotlib so it is reasonable to use the > matplotlib API for

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

[sympy] Grid in sympy plotting

2019-06-25 Thread Lee Smith
Greetings: I want to display a grid in a sympy plot. The sympy.doc page only discusses mesh grids. On searching through Google, I found only one result that suggested using matplotlib.pyplot in addition to the sympy.plot(...) method. This should be simple and I am surprised that it is not

[sympy] plotting the batman equations, need help

2017-06-24 Thread Jason Moore
I've been trying to put together a demo showing how sympy's jscode generator could be used to plot functions using Chart.js in the Jupyter notebook. I decided to try plotting the Batman equations and it almost works. The sympy.plot function gets most of it but seems to have issues with the head.

[sympy] plotting test failure on Sympy master

2015-04-26 Thread j . gonthier01
: _ __ sympy/plotting/tests/test_plot_implicit.py:test_matplotlib

Re: [sympy] plotting test failure on Sympy master

2015-04-26 Thread Joachim Durchholz
Am 26.04.2015 um 22:42 schrieb j.gonthie...@gmail.com: File sympy/plotting/plot_implicit.py, line 81, in get_raster temp = func(xinterval, yinterval) File string, line 1, in lambda NameError: global name 'Eq' is not defined I can confirm that this error happens. I had to `pip

[sympy] plotting a conic section by knowing its standard equation

2014-12-14 Thread Lorenzo Bercelli
hello everybody, I got a very silly question: what's the best way to plot a conic section on a plane if I have its standard equation (e.g.: x^​2^+y^^2​​ =1)? I've tried plot but it needs a univariate expression, and I haven't been able to find a method to transform the expression into f(x) = \pm

Re: [sympy] plotting a conic section by knowing its standard equation

2014-12-14 Thread Aaron Meurer
To get a set of functions to plot, you would use solve(), like solve(Eq(x**2 + y**2, 1), y). This will return two solutions, which when plotted simultaneously, should give a full circle. An easier way is to use plot_implicit(), which doesn't require solving, and will work even for equations that

Re: [sympy] Plotting Module for Sympy

2014-01-21 Thread Nitin Agarwal
can get this work done as I am aware of this module. I would like to start working on improving the Plotting module and integrate with the existing Sympy Plotting Module. One can also contact me on IRC : nitinagarwal3006 at Freenode or github : https://github.com/NitinAgarwal On 17

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: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-31 Thread sympy
Comment #9 on issue 4041 by chris.sm...@calvinchristian.org: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 Maybe someone more familiar with the plot module can help you fix the doctests. -- You received this message because this project

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-02 Thread sympy
Comment #5 on issue 4041 by amitsaha...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 Something went wrong with the previous one.. Here is the new one: https://github.com/sympy/sympy/pull/2496 -- You received this message

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-02 Thread sympy
Updates: Status: Started Labels: NeedsReview Comment #6 on issue 4041 by julien.r...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 There are now multiple suggested pulls, another one is https://github.com/sympy

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-02 Thread sympy
Comment #7 on issue 4041 by catchmrb...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 @amitsaha. Can you close the one of the pull requests? -- You received this message because this project is configured to send all issue

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-02 Thread sympy
Comment #8 on issue 4041 by amitsaha...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 Yes, https://github.com/sympy/sympy/pull/2493 is closed. -- You received this message because this project is configured to send all issue

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-01 Thread sympy
Updates: Status: Valid Labels: EasyToFix Comment #1 on issue 4041 by julien.r...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 I guess it should be BaseSeries. The docstring says Adds one more graph

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-01 Thread sympy
Updates: Labels: Documentation Comment #2 on issue 4041 by krastano...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 The use case is supposed to be: p1 = plot(...) p2 = plot(...) # p1 and p2 are basically list

Re: Issue 4041 in sympy: 'Series' undefined in sympy/plotting/plot.py

2013-10-01 Thread sympy
Comment #3 on issue 4041 by amitsaha...@gmail.com: 'Series' undefined in sympy/plotting/plot.py http://code.google.com/p/sympy/issues/detail?id=4041 Sure, that sounds straightforward enough. Will work on it. -- You received this message because this project is configured to send all issue

[sympy] Plotting and automatic multiple colors

2013-09-28 Thread Amit Saha
): File pyshell#120, line 1, in module plt.append(plt2) File /usr/lib/python3.3/site-packages/sympy/plotting/plot.py, line 210, in append self._series.append(BaseSeries(*args)) NameError: global name 'Series' is not defined This is what I attempted: plt = plot(sin(x), show=False) plt2

Issue 3977 in sympy: Plotting warning

2013-08-14 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium Plotting New issue 3977 by asmeu...@gmail.com: Plotting warning http://code.google.com/p/sympy/issues/detail?id=3977 See https://travis-ci.org/sympy/sympy/jobs/10212578 around the plotting test sympy/plotting/tests/test_plot.py[2

Re: Issue 3940 in sympy: Plotting tests fail with pyglet installed

2013-07-12 Thread sympy
Comment #1 on issue 3940 by asmeu...@gmail.com: Plotting tests fail with pyglet installed http://code.google.com/p/sympy/issues/detail?id=3940 I haven't tested pyglet for a long time, because it used to give a bunch of errors that were not our fault (either Pyglet bugs, or configuration

Issue 3940 in sympy: Plotting tests fail with pyglet installed

2013-07-10 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium Plotting New issue 3940 by matt...@gmail.com: Plotting tests fail with pyglet installed http://code.google.com/p/sympy/issues/detail?id=3940 Running `bin/test sympy/plotting` or `bin/doctest sympy/plotting` with pyglet installed

[sympy] Plotting geometric objects

2013-06-24 Thread Amit Saha
Hello, I saw a few examples of plotting geometric objects using the pyglet module here [1]. I also learned that this is not going to be developed actively going ahead. Could someone please point to me an example of plotting geometric objects using the plot() function? (Is it supported yet?)

Re: [sympy] Plotting geometric objects

2013-06-24 Thread Stefan Krastanov
It is not supported yet. If you want, you can use the old plotting module (the only difference is the import path). If you are willing, feel free to contribute the needed routines for the new plotting module. You will need to create a new `Series` subclass and mostly copy the code from the old

Re: [sympy] Plotting geometric objects

2013-06-24 Thread Amit Saha
Hello Stefan, On Mon, Jun 24, 2013 at 8:21 PM, Stefan Krastanov krastanov.ste...@gmail.com wrote: It is not supported yet. If you want, you can use the old plotting module (the only difference is the import path). If you are willing, feel free to contribute the needed routines for the new

Re: [sympy] Plotting geometric objects

2013-06-24 Thread Amit Saha
On Mon, Jun 24, 2013 at 8:27 PM, Amit Saha amitsaha...@gmail.com wrote: Hello Stefan, On Mon, Jun 24, 2013 at 8:21 PM, Stefan Krastanov krastanov.ste...@gmail.com wrote: It is not supported yet. If you want, you can use the old plotting module (the only difference is the import path). If

Re: [sympy] Plotting geometric objects

2013-06-24 Thread Stefan Krastanov
Check this: http://docs.sympy.org/dev/modules/geometry.html#sympy.geometry.line.LinearEntity.arbitrary_point I guess that subclassing the class for parametric 2d curves should be sufficient. Then just hardcode the range for 't' (be sure to use a Dummy and not a Symbol for it). Concerning

[sympy] Plotting: how to set line colors

2013-06-17 Thread Ondřej Čertík
Hi, Here is one of my notebooks (work in progress) for the sympy tutorial: http://nbviewer.ipython.org/5799312 How can I set line colors in the plot at the prompt [8]? I didn't find it in the docs: http://docs.sympy.org/dev/modules/plotting.html I assume I should save it to a variable p and

[sympy] Plotting discrete points [(x1,y1), (x2,y2),...]

2012-10-29 Thread Brian Stephanik
Hi, Is there a way to plot discrete points using the plotting module? The documentation on graphing functions seems alright, but I didn't see a function that sounded like it could plot points. Best, Brian -- You received this message because you are subscribed to the Google Groups sympy

Re: [sympy] Plotting discrete points [(x1,y1), (x2,y2),...]

2012-10-29 Thread Stefan Krastanov
Are you asking about the new module from version 0.7.2 that was released recently or about the old one. The new module implements this, however I think that the user facing function for it was removed before release, because we were focusing on polishing the plotting of functions. I can provide

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-08-22 Thread sympy
Comment #14 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 There are exceptions when running the plotting tests in an environment without displays (e.g., in Ubuntu, type Ctrl-Alt-F1 in the login screen, and run

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-08-22 Thread sympy
Updates: Status: WontFix Comment #15 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 And on Mac OS X (in single user mode; that's the only way I could figure out how to disable the display), it gives

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #6 on issue 3347 by catchmrb...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 This is not fixed by the pull request. All the plotting tests are skipped with the changes in this PR. -- You received this message because you are subscribed to

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #7 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 Was my logic wrong? It should only skip if matplotlib is not the default backend. -- You received this message because you are subscribed to the Google Groups

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #8 on issue 3347 by catchmrb...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 The DefaultBackend returns MatplotlibBackend only when it is initialized. Otherwise they are two different classes and are not equal. -- You received this

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Updates: Status: Started Comment #9 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 Can you verify that https://github.com/sympy/sympy/pull/1481 does it correctly? -- You received this message because you are

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Updates: Status: Fixed Comment #10 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 That was merged. Please reopen if this is still an issue. -- You received this message because you are subscribed to the Google Groups

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #6 on issue 3347 by catchmrb...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 This is not fixed by the pull request. All the plotting tests are skipped with the changes in this PR. -- You received this message because you are subscribed to

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #7 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 Was my logic wrong? It should only skip if matplotlib is not the default backend. -- You received this message because you are subscribed to the Google Groups

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Comment #8 on issue 3347 by catchmrb...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 The DefaultBackend returns MatplotlibBackend only when it is initialized. Otherwise they are two different classes and are not equal. -- You received this

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Updates: Status: Started Comment #9 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 Can you verify that https://github.com/sympy/sympy/pull/1481 does it correctly? -- You received this message because you are

Re: Issue 3347 in sympy: plotting error in master

2012-08-12 Thread sympy
Updates: Status: Fixed Comment #10 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 That was merged. Please reopen if this is still an issue. -- You received this message because you are subscribed to the Google Groups

Re: [sympy] Plotting fixes (#1476)

2012-08-10 Thread Stefan Krastanov
**SymPy Bot Summary:** :eight_spoked_asterisk: All tests have passed. *Test command:* setup.py test *master hash*: dd8352a0582b91b286a98fabfb0af7486faeeb03 *branch hash*: 84b89643e1e82bbc6045ce607d0eb4c83c5c7a8a **Interpreter 1:** :eight_spoked_asterisk: All tests have passed. *Interpreter:*

Re: [sympy] Plotting fixes (#1476)

2012-08-10 Thread Julien Rioux
**SymPy Bot Summary:** :eight_spoked_asterisk: All tests have passed. Test results html report: http://reviews.sympy.org/report/agZzeW1weTNyDAsSBFRhc2sYobMjDA *Interpreter:* /usr/bin/python (2.7.0-final-0) *Architecture:* Linux (32-bit) *Cache:*yes *Test command:* setup.py test

Re: Issue 3347 in sympy: plotting error in master

2012-08-09 Thread sympy
Updates: Labels: NeedsReview Comment #5 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 See https://github.com/sympy/sympy/pull/1476. -- You received this message because you are subscribed to the Google Groups

[sympy] Plotting fixes (#1476)

2012-08-09 Thread Aaron Meurer
This fixes some plotting problems that were cause some test failures. You can merge this Pull Request by running: git pull https://github.com/asmeurer/sympy plotting-fixes Or you can view, comment on it, or merge it online at: https://github.com/sympy/sympy/pull/1476 -- Commit Summary

Re: [sympy] Plotting fixes (#1476)

2012-08-09 Thread Aaron Meurer
@Krastanov @catchmrbharath, does this look OK. By the way, why is the backend dictionary imported by default? --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1476#issuecomment-7634026 -- You received this message because you are subscribed to the

Re: Issue 3347 in sympy: plotting error in master

2012-08-09 Thread sympy
Updates: Labels: NeedsReview Comment #5 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 See https://github.com/sympy/sympy/pull/1476. -- You received this message because you are subscribed to the Google Groups

Re: [sympy] Plotting fixes (#1476)

2012-08-09 Thread The Travis Bot
This pull request [passes](http://travis-ci.org/sympy/sympy/builds/2083230) (merged 84b89643 into dd8352a0). --- Reply to this email directly or view it on GitHub: https://github.com/sympy/sympy/pull/1476#issuecomment-7634204 -- You received this message because you are subscribed to the

Re: Issue 3347 in sympy: plotting error in master

2012-08-04 Thread sympy
Updates: Cc: krastano...@gmail.com catchmrb...@gmail.com Labels: -Priority-Medium Priority-Critical Plotting Comment #1 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 (No comment was entered for this change.)

Re: Issue 3347 in sympy: plotting error in master

2012-08-04 Thread sympy
Comment #2 on issue 3347 by krastano...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 The error was raised because the test_matplotlib.py was run for some reason without matplotlib installed, hence it tried to call unexisting methods on the

Re: Issue 3347 in sympy: plotting error in master

2012-08-04 Thread sympy
Comment #3 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 (The test sequence is mine) But I do have matplotlib installed in that Python version. Anyway, it should be using import_module. -- You received this message because

Re: Issue 3347 in sympy: plotting error in master

2012-08-04 Thread sympy
Comment #4 on issue 3347 by asmeu...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 I think I know the problem. import matplotlib works fine, but import matplotlib.pyplot gives ImportError:

Issue 3347 in sympy: plotting error in master

2012-08-03 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3347 by smi...@gmail.com: plotting error in master http://code.google.com/p/sympy/issues/detail?id=3347 Occasionally seen: __ sympy/plotting/tests/test_plot.py:test_matplotlib ___ File

[sympy] Plotting all the plotable stuff under the sky

2012-04-13 Thread krastanov.ste...@gmail.com
Concerning a new wiki page: https://github.com/sympy/sympy/wiki/Plotting-capabilities There is a pull request about a new plotting module that may have some advantages over the old plotting module. There is also a GSoC application that would bring addition functionality concerning implicit plots.

Re: Issue 309 in sympy: plotting on macos x freezes

2012-03-20 Thread sympy
Comment #18 on issue 309 by brian.jo...@gmail.com: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 This bug is extremely old. My opinion is that a new approach should be taken to replace the functionality rather than patch it. Not because it's old, but

Issue 3139 in sympy: Plotting issue

2012-03-11 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 3139 by benv...@gmail.com: Plotting issue http://code.google.com/p/sympy/issues/detail?id=3139 I am running sympy version 0.7.1 with python 2.6 on OSX 10.5.8 and whenever I plot something, the plot window comes up with the

Re: Issue 309 in sympy: plotting on macos x freezes

2012-03-11 Thread sympy
Comment #16 on issue 309 by asmeu...@gmail.com: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 Issue 3139 has been merged into this issue. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this group,

Re: Issue 3139 in sympy: Plotting issue

2012-03-11 Thread sympy
Updates: Status: Duplicate Labels: Plotting Mergedinto: 309 Comment #1 on issue 3139 by asmeu...@gmail.com: Plotting issue http://code.google.com/p/sympy/issues/detail?id=3139 Yeah, this is a known issue with Pyglet. See issue 309. I think the problem is with Pyglet

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-02-25 Thread sympy
Comment #12 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 Actually, the version may be irrelevant. Perhaps it happened because you were over ssh, and had no window environment (or were you using -X?). -- You

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-01-24 Thread sympy
Comment #10 on issue 2863 by krastano...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 I have been able to reproduce it over ssh on another machine. I have not done any bisecting to find why. This does NOT produce the error: In [2]:

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-01-24 Thread sympy
Comment #11 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 Well, that's not helpful: import pyglet pyglet.__version__ '$Id$' -- You received this message because you are subscribed to the Google Groups

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-01-04 Thread sympy
Comment #8 on issue 2863 by ness...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 I can reproduce this on my system (see below) using bin/test with no arguments. However it takes at least five minutes to trigger the problem, and pudb

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2012-01-04 Thread sympy
Comment #9 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 I was able to bisect the change from one failure to the other (and yes, it took forever; I would recommend creating a scratch clone of sympy and doing it

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-12-17 Thread sympy
Comment #7 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 OK, I bisected the change from TypeError: unsupported operand type(s) for -=: 'Tuple' and 'int' to ValueError: Symbolic value, can't compute to the

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-12-11 Thread sympy
Comment #6 on issue 2863 by asmeu...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 I just noticed that it is now giving instead: sympy/plotting/tests/test_plotting.py[11] ... [OK] sympy/polys/tests

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-12-09 Thread sympy
Comment #4 on issue 2863 by ondrej.c...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 What exactly is the problem here? How can I reproduce it? -- You received this message because you are subscribed to the Google Groups sympy-issues

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-12-09 Thread sympy
Comment #5 on issue 2863 by krastano...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 _If_ I remember correctly Aaron's sympy-bot crashes when testing pyglet. It happens only in the bot and not by running setup.py. I was unable to

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-11-28 Thread sympy
Comment #1 on issue 2863 by krastano...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 On my machine (Ubuntu 11.10, 64bit intel atom) the following four commands do NOT raise an error. python2.5 ./bit/test sympy/plotting/tests ./bit/test

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-11-28 Thread sympy
Comment #2 on issue 2863 by krastano...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 The following command does not raise errors: python2.5 setup.py test -- You received this message because you are subscribed to the Google Groups

Re: Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-11-28 Thread sympy
Comment #3 on issue 2863 by krastano...@gmail.com: Plotting failures with SymPy-Bot http://code.google.com/p/sympy/issues/detail?id=2863 The following command does not raise errors: sympy-bot -i python2.5 I can not reproduce the bug whatever I try. I was using 2.5.6-final-0 -- You

Issue 2863 in sympy: Plotting failures with SymPy-Bot

2011-11-22 Thread sympy
/threading.py, line 440, in run self.__target(*self.__args, **self.__kwargs) File /private/var/folders/wc/dppcpmxs1tlb36nqcw853wkmgn/T/sympy-bot-tmp6CFBY3/sympy/sympy/plotting/plot_mode_base.py, line 269, in _calculate_all self._calculate_cverts() File /private/var/folders

Re: [sympy] Plotting framework

2011-10-28 Thread Aaron Meurer
2011/10/27 Ondřej Čertík ondrej.cer...@gmail.com: Hi Stefan, On Wed, Oct 26, 2011 at 12:54 PM, krastanov.ste...@gmail.com krastanov.ste...@gmail.com wrote: The visual examples are in test.py in the root (the file will be deleted/moved if there is ever a version for merging)- it's meant for

Re: [sympy] Plotting framework

2011-10-27 Thread Ondřej Čertík
Hi Stefan, On Wed, Oct 26, 2011 at 12:54 PM, krastanov.ste...@gmail.com krastanov.ste...@gmail.com wrote: The visual examples are in test.py in the root (the file will be deleted/moved if there is ever a version for merging)- it's meant for copy pasting or interactive shell, so you can see how

Re: [sympy] Plotting framework

2011-10-27 Thread krastanov.ste...@gmail.com
2011/10/27 Ondřej Čertík ondrej.cer...@gmail.com Hi Stefan, On Wed, Oct 26, 2011 at 12:54 PM, krastanov.ste...@gmail.com krastanov.ste...@gmail.com wrote: The visual examples are in test.py in the root (the file will be deleted/moved if there is ever a version for merging)- it's meant for

Re: [sympy] Plotting framework

2011-10-26 Thread Christophe BAL
Hello, what are the main differences with the current plotting system ? Are there some visual examples ? Best regards. C. 2011/10/26 krastanov.ste...@gmail.com krastanov.ste...@gmail.com Hi, Some time ago I announced that I was playing with some code for a new, more general plotting

Re: [sympy] Plotting framework

2011-10-26 Thread krastanov.ste...@gmail.com
The visual examples are in test.py in the root (the file will be deleted/moved if there is ever a version for merging)- it's meant for copy pasting or interactive shell, so you can see how it works. About the differences: The code in newplot is just a *simplified* interface to whichever backend

Re: Issue 1867 in sympy: plotting tests open Python rocket ship application in Mac OS X

2011-07-23 Thread sympy
Comment #5 on issue 1867 by asmeurer: plotting tests open Python rocket ship application in Mac OS X http://code.google.com/p/sympy/issues/detail?id=1867 Yes, this is definitely still an issue. -- You received this message because you are subscribed to the Google Groups sympy-issues group.

Re: Issue 309 in sympy: plotting on macos x freezes

2011-07-23 Thread sympy
Updates: Status: Accepted Comment #13 on issue 309 by asmeurer: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 Now that we've unbundled Pyglet, this is an issue again with Pyglet 1.1.4. I don't know if it's a SymPy issue or a Pyglet issue, though.

Re: Issue 309 in sympy: plotting on macos x freezes

2011-07-23 Thread sympy
Comment #14 on issue 309 by asmeurer: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 Ah, it's because the patch that fixed it, https://github.com/sympy/sympy/pull/279, modified pyglet itself. So we need to manually apply this fix to Pyglet then. -- You

Re: Issue 309 in sympy: plotting on macos x freezes

2011-07-23 Thread sympy
Comment #15 on issue 309 by asmeurer: plotting on macos x freezes http://code.google.com/p/sympy/issues/detail?id=309 Well, setting pyglet.options['shadow_window'] to False does not solve the problem in Mac OS X. So I don't know what to do. -- You received this message because you are

Re: Issue 1867 in sympy: plotting tests open Python rocket ship application in Mac OS X

2011-06-26 Thread sympy
Comment #3 on issue 1867 by vlada.pe...@gmail.com: plotting tests open Python rocket ship application in Mac OS X http://code.google.com/p/sympy/issues/detail?id=1867 We removed pygled, is this fixed now? -- You received this message because you are subscribed to the Google Groups

Re: Issue 1867 in sympy: plotting tests open Python rocket ship application in Mac OS X

2011-06-26 Thread sympy
Updates: Labels: Testing Comment #4 on issue 1867 by asmeurer: plotting tests open Python rocket ship application in Mac OS X http://code.google.com/p/sympy/issues/detail?id=1867 I think maybe not. test_plotting.py still exists. I can't test it now, because I don't seem to have

  1   2   >