srrc_fir
FIR approximation of Square Root Raised Cosine (SRRC) filter
Paramètres
- r:
rool-off factor
- osf:
over sampling factor
- n:
number of coefficients
rool-off factor
over sampling factor
number of coefficients
Séquence d'appel
y = srrc_fir(r,osf,n)
y = srrc_fir(r,osf,n,'sum') Normalize the coefficients to have sum = 1 (default behavior)
y = srrc_fir(r,osf,n,'energy') Normalize the coefficients to preserve energy: <span><img src='./_LaTeX_srrc_fir.xml_1.png' style='position:relative;top:21px;width:85px;height:42px'/></span>
y = srrc_fir(r,osf,n) y = srrc_fir(r,osf,n,'sum') Normalize the coefficients to have sum = 1 (default behavior) y = srrc_fir(r,osf,n,'energy') Normalize the coefficients to preserve energy: <span><img src='./_LaTeX_srrc_fir.xml_1.png' style='position:relative;top:21px;width:85px;height:42px'/></span>
Description
Exemples
h = srrc_fir(r=0.5,osf=2,n=5);
plot_rimp(h);
h = srrc_fir(r=0.5,osf=2,n=5); plot_rimp(h); |