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 = padt(x, n, val)
%y = padt(x, n, val)
% Pad a matrix x on the top to length n with value val(0)
% The empty matrix is assumed to be have 1 empty column
if nargin < 3
val = 0;
end
y = [ val( ones( n-size(x,1), max(1,size(x,2)) ) ); x ];