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 F1 = evalF1(f1,z,phi)
%F1 = evalF1(f1,z,phi) Calculate the values of the F1 filter
%(tranformed prototype filter) of a Saramaki HBF at the given points.
if nargin>2
z = z/phi;
end
F1 = 0.5;
for i = 1:length(f1);
F1 = F1 + f1(i)*z.^(2*i-1);
end