DocumentNTF(arg1,osr,f0,quadr...axis_handle = DocumentNTF(ntf|ABCD|mod_struct,osr=64,f0=0,quadrature=0) Plot the NTF's poles and zeros as well as its frequency-response
ESLselect(v,sy,dw,df)sv = ESLselect(v,sy,dw,df) Select the elements of a multi-element
function mag = zinc(f,m,n)
% mag = zinc(f,m=64,n=1) Calculate the magnitude response
% of a cascade of n mth-order comb filters at frequencies f.
if nargin<3
n = 1;
if nargin<2
m = 64;
end
end
mag = abs( sinc(m*f) ./ sinc(f) ).^n;