DADiSP Worksheet Functions > Function Categories > Fourier Transforms and Signal Processing > SLPFREQ
Displays the frequency response of a single pole digital low pass filter.
SLPFREQ(fc, N, fs, mag)
fc |
- |
A real, the cutoff frequency in Hertz. |
||||
N |
|
Optional. An integer, the number of frequency samples. Defaults to 4096. |
||||
fs |
- |
Optional. A real, the sample rate of the filter. Defaults to |
||||
mag |
- |
Optional. An integer, the log scale flag.
|
A series, the frequency response of the filter.
W1: slpfreq(100)
returns 4096 samples of the magnitude of the frequency response for a single pole high pass filter with a cutoff frequency of 100 Hz. The result is displayed on a log scale.
W1: slpfreq(100, 10000)
returns 10000 samples of the magnitude of the frequency response for a single pole low pass filter with a cutoff frequency of 100 Hz. The result is displayed on a log scale.
W1: slpfreq(10, 6000, 200, 1)
returns 6000 samples of the complex frequency response for a single pole low pass filter with a cutoff frequency of 10 Hz and a sample rate of 200 Hz.
The single pole analog low pass filter is implemented in the digital domain using the impulse invariance technique.
See SLP to process data with a single pole low pass digital filter.
See DADiSP/Filters for additional digital filter design techniques and implementations.