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 t = thermometer(x,m)
% t = thermometer(x,m) t is an m by length(x) matrix wherein the first
% x(i) components of column i are one;
t = zeros(m,length(x));
for i=1:length(x)
t(1:x(i),i) = ones(x(i),1);
end