Band pass FIR filter
Purpose
Description
Macro Synopsis
Modules
Related Functions
References
Purpose
FIR bandpass filter
Description
"Band pass FIR filter" applies a bandpass FIR filter to the given signal.
Its parameters are
- Filter design method:
- "Parks-McClellan" (0)
- "Kaiser" (1)
- "Potter" (2)
- Filter type:
- "Zero Phase" (0)
- "Linear Phase" (1)
- Attenuation atten in negative dB
- Relative transition width
- Lower limit frequency f0 in reciprocal x-axis units
- Upper limit frequency f1 in reciprocal x-axis units
Macro Synopsis
y = FIRBandPass(x, method, type, atten, width, f0, f1);
signal x,y;
option method,type;
float atten,width,f0,f1;
Modules
Filter
Related Functions
Band reject FIR filter, High pass FIR filter,
Low pass FIR filter.
References
Oppenheim/Schafer [3], Parks/Burrus
[4], Otnes/Enochson [5].