Adding thr polar plot to another figure
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
KSSV
2018 年 7 月 3 日
C = rand(10,2) ;
plot(C(:,1),C(:,2),'.k')
% polar coordinates
theta = linspace(0,2*pi,50);
rho = 0.05*theta/10;
% conver polar coordinates to cartesian
[x,y] = pol2cart(theta,rho) ;
hold on
for i = 1:10
plot(x+C(i,1),y+C(i,2))
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
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!