uneven distributed points in polarscatter
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to plot points evenly distributed using polarscatter. So I have the following lines. However apparently those points are not evenly distributed as attachment. I really appreciate any help!
>> b=0:10:350;
>> polarscatter(b,ones(size(b)),100,ones(size(b)),'filled')

댓글 수: 0
채택된 답변
Chunru
2021년 8월 12일
polarscatter use radian instead of deg
b=0:10:350;
polarscatter(deg2rad(b),ones(size(b)),100,ones(size(b)),'filled')
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
