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 y = sinc_decimate(x,m,r)
% y = sinc_decimate(x,m,r) Decimate x by m-th order sinc of length r.
x = x(:)';
for i=1:m
x = cumsum(x);
x = [x(1:r) x(r+1:end)-x(1:end-r)]/r;
end
y = x(r:r:end);