| 1 | initial version |
I don't know what you're asking, but here's how to plot something with a different variable:
sage: var('theta')
theta
sage: parametric_plot( (theta, theta^2), (theta,0,10))
You just need to declare your variables with var()
| 2 | No.2 Revision |
I don't know I'm not quite sure what you're asking, but here's how to plot something with a different variable:
sage: var('theta')
theta
sage: parametric_plot( (theta, theta^2), (theta,0,10))
You just need to declare your variables with var()
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.