How to polarplot theta=3*pi/4 ?
4 ビュー (過去 30 日間)
古いコメントを表示
theta=3*pi/4
2 件のコメント
Thorsten
2016 年 10 月 31 日
This would be just a single point. Are you sure that this is what you want?
回答 (3 件)
Star Strider
2016 年 10 月 31 日
編集済み: Star Strider
2016 年 10 月 31 日
theta = 3*pi/4;
figure(1)
plot(theta, 'pg')
EDIT — Using the polar plot:
theta = 3*pi/4;
figure(1)
polar(theta*[1 1], [0 1], '-pg')
0 件のコメント
Thorsten
2016 年 11 月 1 日
theta = 3/4*pi;
plot([0 cos(theta)], [0 sin(theta)])
axis equal
axis([-1 1 -1 1])
0 件のコメント
Steven Lord
2016 年 11 月 1 日
r = [-5 5];
theta = repmat(3*pi/4, size(r));
polarplot(theta, r)
Adjust the values in r to suit your desired polar axes radius.
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!