In an earlier post, it was mentioned that delta modulator without the quantizer is identical to convolving an input sequence with . Let us first try to validate that thought using a small MATLAB example and using the delta modulator circuit shown in Figure 9.13a of DSP-Proakis [1].
% delta modulation
xn = sin(2*pi*1/64*[0:63]);
xhatn = 0;
for [...]
Read the full article →