design_fir_rc

Raised cosine filter design.

Namespace: dsp::filter

Prototype

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

Parameters

nFilter order.
βRoll-off factor.
fcNormalized 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");

See also

design_fir_srrc()