www.gusucode.com > phased 案例源码 matlab代码程序 > phased/AddingTapersToArrayExample.m

    %% Adding Tapers to an Array  
% Construct a 5-by-2 element URA with a Taylor window taper along each column.
% The tapers form a 5-by-2 matrix.   

% Copyright 2015 The MathWorks, Inc.


%%  
taper = taylorwin(5);
ha = phased.URA([5,2],'Taper',[taper,taper]);
w = getTaper(ha)