www.gusucode.com > matlab通信工程仿真源码(张德丰等编著)程序书籍 > matlab_code/matlab通信工程仿真源码(张德丰等编著)/第4章/li4_19.m

    %功能:羽毛图绘制函数feather使用实例
x=rand(2,5);
y=rand(2,5);
subplot(211)
plot(x,y,'r*')
xlabel('X')
ylabel('Y')
subplot(212)
grid on
feather(x,y)
xlabel('X')
ylabel('Y')