First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 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

click to hide/show revision 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).

click to hide/show revision 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).