<< Chapter < Page | Chapter >> Page > |
Overflow is clearly a serious problem, since the errors it introduces are very large. As we shall see, it is also responsiblefor large-scale limit cycles, which cannot be tolerated. One way to prevent overflow, or to render it acceptably unlikely, is to scale the input to a filter such that overflow cannot (or is sufficiently unlikely to) occur.
In a fixed-point system, the range of the input signal is limited by the fractional fixed-point number representation to . If we scale the input by multiplying it by a value , , then .
Another option is to incorporate the scaling directly into the filter coefficients.
What value of is required so that the output of an FIR filter cannot overflow( , )? Alternatively, we can incorporate the scaling directly into the filter, and require that to prevent overflow.
To prevent the output from overflowing in an IIR filter, the condition above still holds:( ) so an initial scaling factor can be used, or the filter itself can be scaled.
However, it is also necessary to prevent the states from overflowing, and to prevent overflow at any point in the signal flow graph where the arithmetic hardware wouldthereby produce errors. To prevent the states from overflowing, we determine the transfer function from the input to all states , and scale the filter such that
Although this method of scaling guarantees no overflows, it is often too conservative. Note that a worst-case signal is ; this input may be extremely unlikely. In the relatively common situation in which the input is expected tobe mainly a single-frequency sinusoid of unknown frequency and amplitude less than 1, a scaling condition of is sufficient to guarantee no overflow. This scaling condition is often used. If there are several potential overflowlocations in the digital filter structure, the scaling conditions are where is the frequency response from the input to location in the filter.
Even this condition may be excessively conservative, for example if the input is more-or-less random, or if occasionaloverflow can be tolerated. In practice, experimentation and simulation are often the bestways to optimize the scaling factors in a given application.
For filters implemented in the cascade form, rather than scaling for the entire filter at the beginning, (whichintroduces lots of quantization of the input) the filter is usually scaled so that each stage is just preventedfrom overflowing. This is best in terms of reducing the quantization noise. The scaling factors are incorporatedeither into the previous or the next stage, whichever is most convenient.
Some heurisitc rules for grouping poles and zeros in a cascade implementation are:
Leland B. Jackson has an excellent intuitive discussion of finite-precision problems in digitalfilters. The book by Roberts and Mullis is one of the most thorough in terms of detail.
Notification Switch
Would you like to follow the 'Digital signal processing: a user's guide' conversation and receive update notifications?