How can i polar plot R1 without theta .the equation R1=7 means that no matter what angle we’ve got the distance from the origin must be 7. when i plot it it doesn't show in the figures as R2 and R3 does!!!
1 回表示 (過去 30 日間)
古いコメントを表示
theta = linspace(0,2*pi,1000); R1=7; R2 = 2 - 2*sin(theta); R3=2+4*cos(theta);
0 件のコメント
採用された回答
Steven Lord
2017 年 11 月 23 日
Make R1 a vector of the same length as theta with all its elements equal to 7.
R1 = repmat(7, size(theta));
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!