how to make a polar plot from 0 to 2 pi
3 views (last 30 days)
Show older comments
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.
0 Comments
Answers (1)
KSSV
on 27 Sep 2017
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)
0 Comments
See Also
Categories
Find more on Polar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!