Ticket #4152 (closed defect: fixed)
[with patch, positive review] parametric_plot should take the variable range as (var, min, max) like plot
| Reported by: | jason | Owned by: | mhansen |
|---|---|---|---|
| Priority: | major | Milestone: | sage-3.3 |
| Component: | graphics | Keywords: | |
| Cc: | Work issues: | ||
| Report Upstream: | Reviewers: | ||
| Authors: | Merged in: | ||
| Dependencies: | Stopgaps: |
Description
This should work to be consistent with plot:
sage: parametric_plot((2*x, x^2+1), (x,0,1)) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /home/grout/<ipython console> in <module>() TypeError: parametric_plot() takes exactly 3 arguments (2 given)
Attachments
Change History
comment:2 Changed 4 years ago by mhansen
- Owner changed from was to mhansen
- Status changed from new to assigned
- Summary changed from parametric_plot should take the variable range as (var, min, max) like plot to [with patch, needs review] parametric_plot should take the variable range as (var, min, max) like plot
Changed 4 years ago by jason
-
attachment
trac_4152-docs-dispatch.patch
added
apply on top of previous patch
comment:3 Changed 4 years ago by jason
positive review for mhansen's patch. My patch further adds to the documentation and makes the parametric plot function dispatch the 3d version when needed. My patch needs to be reviewed.
comment:4 Changed 4 years ago by mhansen
- Summary changed from [with patch, needs review] parametric_plot should take the variable range as (var, min, max) like plot to [with patch, positive review] parametric_plot should take the variable range as (var, min, max) like plot
Positive review for Jason's part.
Note: See
TracTickets for help on using
tickets.

This was also mentioned in #2410, but was not a fundamental part of that ticket.