
how to plot an angle quadrant?
13 次查看(过去 30 天)
显示 更早的评论
hello
master,i want to plot an angle quadrant like this? then I have array A, the content is [294,295,290……],the A is in this coordinate system。 the question is how i make it.

0 个评论
回答(1 个)
Ameer Hamza
2020-9-22
编辑:Ameer Hamza
2020-9-22
What about something like this
theta = [290 294 200 175 95 45 30 276 320];
polarplot(theta*pi/180, ones(size(theta)), '.', 'MarkerSize', 20);

另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!