design_fir_gaussian_telecom
Coefficients for FIR approximation of a Gaussian filter, for a GFSK modulation.
Namespace: dsp::filter
Prototype
Vecf design_fir_gaussian_telecom(int n, float BT, int osf)
Parameters
n | Number of taps. |
BT | Bandwidth - time product. |
osf | Oversampling factor (ratio of sampling frequency versus symbol frequency). |
Returns
Vector with filter coefficients.
Description
Computes the convolution of Gaussian filter and a moving average filter, with depth equal to the over-sampling factor. The standard deviation of the Gaussian filter is computed according to the Bandwidth-Time product (BT parameter).
This function is targeted for the design of a shaping filter for GFSK modulation.