Code covered by the BSD License  

Highlights from
Delta Sigma Toolbox

image thumbnail
from Delta Sigma Toolbox by Richard Schreier
High-level design and simulation of delta-sigma modulators

v=undbm(p,z)
function v=undbm(p,z) 
% v=undbm(p,z=50) = sqrt(z*10^(p/10-3)) rms voltage equivalent to a power p indBm
if nargin<2
	z = 50;
end
v = sqrt(z*10.^(p/10-3));

Contact us