1 | initial version |
You can use the polar_plot()
function as follows:
sage: polar_plot(3*cos(2*x), (x, 0, 2*pi))
or
sage: polar_plot(3*cos(x), (x, 0, 2*pi)
See
sage: polar_plot?
for more deatils
2 | No.2 Revision |
You can use the polar_plot()
function as follows:
sage: polar_plot(3*cos(2*x), (x, 0, 2*pi))
or
sage: polar_plot(3*cos(x), (x, 0, 2*pi)
See
sage: polar_plot?
for more deatils
Note that polar_plot(XXX)
is just a shortcut for plot(XXX, polar=True)
.
3 | No.3 Revision |
You can use the polar_plot()
function as follows:
sage: polar_plot(3*cos(2*x), (x, 0, 2*pi))
or
sage: polar_plot(3*cos(x), (x, 0, 2*pi)
See
sage: polar_plot?
for more deatils
Note deatils. Also, note that polar_plot(XXX)
is just a shortcut for plot(XXX, polar=True)
.