Changing the radial range in a polar plot
4 次查看(过去 30 天)
显示 更早的评论
Dear All,
I would like to change the radial range of a polar plot. How can I change the following plot such that radius range is for example 0.3 to 0.4 instead of 0.0 to 0.5?
t = 0 : .01 : 2 * pi;
polar(t, sin(2 * t) .* cos(2 * t), '--r');
Thanks!
0 个评论
回答(1 个)
Kyle Rocha-Brownell
2019-9-18
编辑:Kyle Rocha-Brownell
2019-9-18
For future googlers,
After polar(...),
rlim([.3 .5])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polar Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!