how to make a polar plot from 0 to 2 pi
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.
0 comentarios
Respuestas (1)
KSSV
el 27 de Sept. de 2017
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)
0 comentarios
Ver también
Categorías
Más información sobre Polar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!