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 A = mapQtoR(Z)
% A = mapQtoR(Z) Convert a quadrature matrix into its real equivalent.
% Each element in Z is represented by a 2x2 matrix in A: z -> [x -y; y x]
A = zeros(2*size(Z));
A(1:2:end,1:2:end) = real(Z);
A(2:2:end,2:2:end) = real(Z);
A(1:2:end,2:2:end) = -imag(Z);
A(2:2:end,1:2:end) = imag(Z);
return