how to make a polar plot from 0 to 2 pi
5 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to make a polar plot from 0 to 2pi but I don't know how to code that properly.
0 件のコメント
回答 (1 件)
KSSV
2017 年 9 月 27 日
theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)
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!