design_fir_srrc

Square-root raised cosine filter design.

Namespace: dsp::filter

Prototype

Vecf design_fir_srrc(int n, float β, float fc)

Parameters

nFilter order.
βRoll-off factor.
fcNormalized cut-off frequency.

Description

Example

  soit h = design_rif_rcs(31, 0.2, 0.25);
  plot_filtre(h, non).enregistrer("../doxy/images/design-rif-rcs.png");

See also

design_fir_rc(), design_fir_srrc1()