polarplot에서 직선을 긋는방법
显示 更早的评论
回答(1 个)
첨부된 사진이 없어 정확한 요구사항은 모르겠으나 아래와 같은 접근도 가능할 것 같습니다.
n = 100;
theta = [0, linspace(0, pi/4, n-1)];
rho = [0, 100*ones(1, n-1)];
a = polar(theta,rho);
myColor = lines(1);
patch(get(a,'XData'), get(a,'YData'), myColor, 'FaceAlpha',0.2)
类别
在 帮助中心 和 File Exchange 中查找有关 극좌표 플롯 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!