From news.kth.se!nac.no!ifi.uio.no!news.sics.se!eua.ericsson.se!cnn.exu.ericsson.se!convex!cs.utexas.edu!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!fred.interval.com!burgess Wed May 24 09:28:52 1995 Path: news.kth.se!nac.no!ifi.uio.no!news.sics.se!eua.ericsson.se!cnn.exu.ericsson.se!convex!cs.utexas.edu!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!fred.interval.com!burgess From: burgess@interval.com (David Burgess) Newsgroups: comp.arch.embedded,comp.dsp Subject: Re: Averaging to get increased resolution? Date: 23 May 1995 18:28:53 GMT Organization: Interval Research Corporation Lines: 95 Sender: burgess@interval.interval.com. Message-ID: <3pt9h5INNjak@fred.interval.com> References: <3pr699$1p0@sun001.spd.dsccc.com> NNTP-Posting-Host: burgess-pmac.interval.com X-Posted-From: InterNews 1.0@fred.interval.com. Xref: news.kth.se comp.arch.embedded:1135 comp.dsp:18282 In article <3pr699$1p0@sun001.spd.dsccc.com> jmccarty@spd.dsccc.com (Mike McCarty) writes: > Ok, I have been following this for a little while, and seeing a lot of > smoke but very little fire. I.e. many people offering up =opinions= but > I see =no= mathematical derivations nor any references to information > theory. I suggest that this is not a coincidence. > > I suggest that those people who think that an 8 bit converter can > reliably measure more than 8 bits of resolution provide a mathematical > theory (not hypothetical examples) of how that would work, or stop > posting. (I know there are special cases where an 8 bit converter can > supply =any= number of bits of accuracy. For example, if the voltage > happens to lie =exactly= on a voltage the converter can =exactly= > represent. This is not what I mean by the phrase "reliably measure".) An noise-shaping oversampling converter is a sort of pulse-width modulator. To keep the analysis simple, I'll ignore dithering and stick to the basics. Here's the math and theory for a first-over oversampling sigma-delta converter: We start with a discrete-time signal X (call its z-transform X(z)) which is highly oversampled and non-quantized. This is a model of the bandlimited analog signal (it's what you would get from a fast sample-and-hold device, actually). We will convert this to a low-precision quantized signal Y (call its z-transform Y(z)). We will model the quantization as the addition of an error signal E (call its z-transform E(z)). We "shape" the qunatization noise with negative feedback and a filter (we'll call it H(z)) to move it up and out of our band of interest. We will do this by subtracting the output from the input, filtering the difference, and then sampling the filtered signal. Think of a delta-modulator with a filter in the feedback loop. The system equations are: U(z) = H(z)(X(z)-Y(z)) Y(z) = U(z) + E(z) U(z) is an intermediate signal in the feedback loop. Notice that we are actually quantizing U, not X. That's the trick that most of these posters are overlooking. So, what's coming out of this device? What's Y? What's the filter H? Y(z) = U(z) + E(z) = E(z) + H(z)X(z) - H(z)Y(z), therefore Y(z) + H(z)Y(z) = E(z) + H(z)X(z), therefore Y(z) = H(z)X(z)/(1+H(z)) + E(z)/(1+H(z)) Ideally, we want H(z)/(1+H(z)) to be a simple delay so that it does not color or distort the input. We want H(z)/(1+H(z)) = z^-1, which means H(z) = (z^-1)/(1-z^-1), or a first-order integrator. This gives us: Y(z) = X(z)z^-1 + E(z)(1-z^-1) [In practice, X is actually an analog signal, and H is actually an analog integrator. That complicates the analysis, but doesn't change the result. I'd called x[n] a sample-and-hold signal before, but for high oversampling factors, sample-and-hold isn't really required.] This is a delta modulator with an integrator inside it, that's all. So the sampled signal is simply delayed, but the quantization error is passed through a first-order FIR high-pass filter. The power spectrum of sampled signal is not changed. The power spectrum of the noise increases overall, but actually decreases at frequencies below Pi/3 (1/3 of the Nyquist freq.). This is what is meant by "noise-shaping." Noise-shaping can be enhanced by nesting these feedback loops to get 2nd, 3rd, etc. -order converters. I think a lot of commercial audio stuff uses 3rd order sigma-delta conversion. What does Y look like in the time domain? With 1-bit qunatization, Y is a pulse-width modulated version of X. By now you're saying, "Why didn't I think of that?" You can reconstruct X by averaging Y over time: low-pass filtering. Cheap D/A conversion. Multibit Y (like 8-bit quantization) is similar in principle. It's no big secret that higher sample rates give higher precision to pulse-width modulated signals. I hope this has created more light than smoke. If not, go find a good grad-level DSP textbook, because sigma-delta oversampling IS real and works pretty well for a lot of applications. Interval Research 1801-C Page Mill Road Palo Alto, CA 94304 Usenet posting reflect personal opinion only. From news.kth.se!sunic!sunic.sunet.se!columba.udac.uu.se!news.mdh.se!news.seinf.abb.se!eua.ericsson.se!cnn.exu.ericsson.se!convex!bcm!cs.utexas.edu!howland.reston.ans.net!news.sprintlink.net!ns1.win.net!audioheads!robert Mon May 29 08:16:03 1995 Path: news.kth.se!sunic!sunic.sunet.se!columba.udac.uu.se!news.mdh.se!news.seinf.abb.se!eua.ericsson.se!cnn.exu.ericsson.se!convex!bcm!cs.utexas.edu!howland.reston.ans.net!news.sprintlink.net!ns1.win.net!audioheads!robert Newsgroups: comp.arch.embedded,comp.dsp Message-ID: <248@audioheads.win.net> References: <3pr699$1p0@sun001.spd.dsccc.com><3pt9h5INNjak@fred.interval.com> Reply-To: robert@audioheads.win.net (robert bristow-johnson) From: robert@audioheads.win.net (robert bristow-johnson) Date: Tue, 23 May 1995 23:23:38 GMT Subject: Re: Averaging to get increased resolution? Lines: 130 Xref: news.kth.se comp.arch.embedded:1140 comp.dsp:18291 In article <3pt9h5INNjak@fred.interval.com>, InterNews 1.0@fred.interval.com. (InterNews1.0@fred.interval.com.) writes: this is a good post from david burgess (no combustion intended) but i thought some things said needed elaboration. > Here's the math and theory for a first-over >oversampling sigma-delta converter: > >We start with a discrete-time signal X (call its z-transform X(z)) >which is highly oversampled and non-quantized. This is a model of the >bandlimited analog signal (it's what you would get from a fast >sample-and-hold device, actually). > >We will convert this to a low-precision quantized signal Y (call its >z-transform Y(z)). We will model the quantization as the addition of >an error signal E (call its z-transform E(z)). > >We "shape" the qunatization noise with negative feedback and a filter >(we'll call it H(z)) to move it up and out of our band of interest. We >will do this by subtracting the output from the input, filtering the >difference, and then sampling the filtered signal. Think of a >delta-modulator with a filter in the feedback loop. The system >equations are: > >U(z) = H(z)(X(z)-Y(z)) >Y(z) = U(z) + E(z) > this is the correct generalized noise shaping equations but when used for sigma-delta, they need to be modified slightly: U(z) = g*H(z)(X(z)-Y(z)) Y(z) = U(z) + E(z) 'g' is the apparent 'gain' of the comparator. without modelling 'g' in there, you could just keep increasing the gain (all the feed-forward coefficients) of H(z) indefinitely and get better (lower) noise output. but increasing the input signal strength to the comparator (as long as you don't reverse polarity) changes nothing in its behavior nor that of the sigma-delta modulator. the gain 'g' will absorb any change in overall gain of H(z). a sigma-delta modulator is a very non-linear and chaotic system and, probably, best simulated in time to get the most accurate picture of how it behaves. however, if the above (modified) equations are used for what they're worth, u[n] and e[n] have to be uncorrelated. if that's the case, 'g' can determined so that the energy of u[n] and the energy of e[n] (both a function of g and the p.d.f. of u[n]), add to be the energy of y[n] which is always (delta^2)/4 (y[n] is always + or - delta/2, delta = comparator step size). there is only one value of 'g' that satifies this criteria, and, if i remember correctly, it is a function of the mean absolute value of u[n]/g (the output of H(z)). modelling this 'g' and determining a credible value for it is necessary to obtaining the correct frequency response of the noise-shaping filter below: (attach g to H(z), or adjust the feed-forward coefs of H(z) by the same amount and the result IS affected.) >U(z) is an intermediate signal in the feedback loop. Notice that we >are actually quantizing U, not X. That's the trick that most of these >posters are overlooking. > most of us were dealing ONLY with the issue of oversampling (and dithering) to increase S/N. noise-shaping and sigma-delta are other species in the same genus. >So, what's coming out of this device? What's Y? What's the filter H? > >Y(z) = U(z) + E(z) = E(z) + H(z)X(z) - H(z)Y(z), >therefore >Y(z) + H(z)Y(z) = E(z) + H(z)X(z), >therefore >Y(z) = H(z)X(z)/(1+H(z)) + E(z)/(1+H(z)) > >Ideally, we want H(z)/(1+H(z)) to be a simple delay so that it does not >color or distort the input. We want H(z)/(1+H(z)) = z^-1, which means > >H(z) = (z^-1)/(1-z^-1), or a first-order integrator. > >This gives us: > >Y(z) = X(z)z^-1 + E(z)(1-z^-1) > >[In practice, X is actually an analog signal, and H is actually an >analog integrator. That complicates the analysis, but doesn't change >the result. I'd called x[n] a sample-and-hold signal before, but for >high oversampling factors, sample-and-hold isn't really required.] > >This is a delta modulator with an integrator inside it, that's all. > >So the sampled signal is simply delayed, but the quantization error is >passed through a first-order FIR high-pass filter. for a commercial (say analog devices) sigma-delta converter, H will be at least a 3rd order LPF (possibly a 3rd order integrator), not just a single integrator (unless it's MASHed). this makes the HPF for the quantization 3rd order also. it has to be to steer enough noise out of the desired pass-band (to get 96+ dB S/N). 3rd order means there are stability issues, but they deal with it. H(z)/(1+H(z)) is not necessarily flat but what it does to the signal (along with what the decimation filters do to the pass-band of the signal) can and should be compensated for in the post-decimation filter (usually an FIR). > The power spectrum >of sampled signal is not changed. The power spectrum of the noise >increases overall, but actually decreases at frequencies below Pi/3 >(1/3 of the Nyquist freq.). This is what is meant by "noise-shaping." >Noise-shaping can be enhanced by nesting these feedback loops to get >2nd, 3rd, etc. -order converters. i think they call that 'MASH' (i think motorola might use that) but that's different from a single bit loop with higher order feedback filter. r b-j c r e s c e n t e n g i n e e r i n g robert@audioheads.win.net