Ask Your Question

Revision history [back]

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

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

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