design_fir_srrc1

Square-root raised cosine filter design (1).

Namespace: dsp::filter

Prototype

Vecf design_fir_srrc1(int n, float β, float osf, char nrm='s')

Parameters

nFilter order.
βRoll-off factor.
osfOversampling factor ( \(\frac{f_e}{f_{symb}}\)).
nrmType of normalization for the coefficients ('s' for sum = 1, 'e' for sum of squares = 1).

Description

This function is equivalent to design_fir_srrc(), only instead of the cut-off frequency \(f_c\), it is the over-sampling factor which is specified ( \(\textrm{OSF} = \frac{1}{2 f_c}\)).

See also

design_fir_srrc()