design_fir_rc
Raised cosine filter design.
Namespace: dsp::filter
Prototype
Vecf design_fir_rc(int n, float β, float fc)
Parameters
n | Filter order. |
β | Roll-off factor. |
fc | Normalized cut-off frequency. |
Description
Example
soit h = design_rif_cs(31, 0.2, 0.25);
plot_filtre(h, non).enregistrer( "../doxy/images/design-rif-cs.png" );
