如何在极坐标图上填充两条曲线之间的区域

时间:2017-05-18 01:22:26

标签: matlab polar-coordinates

我有以下代码。它创建了一个带有两条曲线的MATLAB极坐标图(见附图)。如何填充这些曲线之间的区域?普通填充选项不起作用,因为它是极性的。enter image description here

t=data(1,:);
a1=data(11,:);
b1=data(12,:);
r_scale=50;
line_width=2;
font_size=12;
marker = 3;
figure(1)
polarplot(t,a1,'-or','MarkerSize',2)
hold on
polarplot(t,b1,'-ok','MarkerSize',2)
hold on

0 个答案:

没有答案