how to make a polar plot from 0 to 2 pi

3 visualizaciones (últimos 30 días)
Hayden O'Neil
Hayden O'Neil el 27 de Sept. de 2017
Respondida: KSSV el 27 de Sept. de 2017
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.

Respuestas (1)

KSSV
KSSV el 27 de Sept. de 2017
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by