Forum Discussion
Altera_Forum
Honored Contributor
16 years agohere is a matlab example of coefficients for inverse sinc
%inverse sinc filter(31 taps)
n = 31;
f = linspace(-.5,.5,1024);
A = 1./sinc(f);
h = fftshift(ifft(fftshift(A)));
h = h(513-15:513+15); %truncate
h = h/sum(h); %normalise
in many cases your interest is in the passband and can improve on it at the expense of stopband