How to polarplot theta=3*pi/4 ?
4 次查看(过去 30 天)
显示 更早的评论
theta=3*pi/4
2 个评论
回答(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!