How to plot such figure in MATLAB?

1 view (last 30 days)

Accepted Answer

Wan Ji
Wan Ji on 2 Sep 2021
Edited: Wan Ji on 2 Sep 2021
use polarplot
theta = 0:0.1:pi;
r = 1+0.6*sin(10*theta);
polarplot(theta,r);
set(gca,'ThetaLim',[0 180])
set(gca,'Rdir','reverse')
  1 Comment
Abdelwahab Afifi
Abdelwahab Afifi on 4 Oct 2021
what about the negative range on x-axis?

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!