Forum Discussion
Altera_Forum
Honored Contributor
17 years agoOutput amplitute from an NCO
Am i right in thinking that the output amplitutde from the NCO is not constant over different frequencies?
Altera_Forum
Honored Contributor
17 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