Signal Processing Toolbox Help Desk

decimate

Purpose

Decrease the sampling rate for a sequence (decimation).

Syntax

Description

Decimation reduces the original sampling rate for a sequence to a lower rate. It is the opposite of interpolation. The decimation process filters the input data with a lowpass filter and then resamples the resulting smoothed signal at a lower rate.

y = decimate(x,r) reduces the sample rate of x by a factor r. The decimated vector y is r times shorter in length than the input vector x. By default, decimate employs an eighth-order lowpass Chebyshev type I filter. It filters the input sequence in both the forward and reverse directions to remove all phase distortion, effectively doubling the filter order.

y = decimate(x,r,n) uses an order n Chebyshev filter. Orders above 13 are not recommended because of numerical instability. MATLAB displays a warning in this case.

y = decimate(x,r,'fir') uses a 30-point FIR filter, instead of the Chebyshev IIR filter. Here decimate filters the input sequence in only one direction. This technique conserves memory and is useful for working with long sequences.

y = decimate(x,r,n,'fir') uses a length n FIR filter.

Example

Decimate a signal by a factor of four:

View the original and decimated signals:

Algorithm

decimate uses decimation algorithms 8.2 and 8.3 from [1]:

  1. It designs a lowpass filter. By default, decimate uses a Chebyshev type I filter with normalized cutoff frequency 0.8/r and 0.05 dB of passband ripple. For the fir option, decimate designs a lowpass FIR filter with cutoff frequency 1/r using fir1.
  2. For the FIR filter, decimate applies the filter to the input vector in one direction. In the IIR case, decimate applies the filter in forward and reverse directions with filtfilt.
  3. decimate resamples the filtered data by selecting every r-th point.

Diagnostics

If r is not an integer, decimate gives the following error message:

If n specifies an IIR filter with order greater than 13, decimate gives the following warning:

See Also

interp

Increase sampling rate by an integer factor (interpolation).

resample

Change sampling rate by any factor.

spline

Cubic spline interpolation (see MATLAB Function Reference).

upfirdn

Apply FIR filter and perform sample rate conversion.

References

[1] IEEE. Programs for Digital Signal Processing. IEEE Press. New York: John Wiley & Sons, 1979. Chapter 8.



[ Previous | Help Desk | Next ]