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()