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

mod2()
function mod = mod2()
% mod = mod2()
% Populate a structure describing the second-order modulator
A=[1 0; 1 1];
B=[1 -1; 1 -2];
C=[0 1];
D=[0 0];
ABCD=[A B; C D];
mod.ABCD=[A B; C D];
[mod.H mod.G] = calculateTF(mod.ABCD);

Contact us