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=dbm(v,R)
% dbm(v,R=50) = 10*log10(v^2/R*1000) The equivalent in dBm of an rms voltage v
if isempty(v)
return
end
if nargin<2
R = 50;
end
y = -Inf*ones(size(v));
nonzero = v~=0;
y(nonzero) = 10*log10(abs(v(nonzero).^2)/R)+30;