Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

symbolic expression plots do not use the generic variable processing pipeline #7641

Open
jasongrout opened this issue Dec 9, 2009 · 0 comments

Comments

@jasongrout
Copy link
Member

Right now, plots for symbolic expressions do not go through the generic codepath, but through the expression.plot() function in symbolic/expression.pyx. This specialized codepath changes how the arguments are handled, etc. I think any functionality in the special codepath ought to go in the generic codepath, or we should reduce the generic codepath quite a bit and just pass things off to symbolic expressions. Too much code duplication here has led to lots of little inconsistencies.

As an example, this works plot(x^2,0,x,5), but this doesn't: parametric_plot((x,x^2), 0,x,5), since the first uses the expression.pyx codepath, but the parametric plot uses the generic codepath.

CC: @burcin

Component: graphics

Issue created by migration from https://trac.sagemath.org/ticket/7641

@jasongrout jasongrout changed the title symbolic expression plots symbolic expression plots do not use the generic variable processing pipeline May 11, 2010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants