I face problem to design and write the SRRC filter in frequency domain and then after take IFFT in time domain according to the equation 28 in [C filter design], the attachment is consist on the equation

.also i already was wrote the code but i dont get the desired result My code is

M=5;

K=128;

a=0.75;

N=K*M;

T=1;

fL=(1-a)/2*T;

fH=(1+a)/2*T;

f = linspace(-fH,fH,N);

G=sqrt(0.5*T*(1+cos(((pi*T)./a)*(abs(f)-fL))));

G(find(abs(f)=fH))=0;

g =fftshift(G);

g=ifft(g,'symmetric')';

plot(f,g,'linewidth',2,'color','r')

grid on

Any help would be greatly appreciated!

More Abdullah Yhya's questions See All
Similar questions and discussions