LPF a random signal
Afficher commentaires plus anciens
I have a random signal and its psd:
x=randn(1000,1);
Fs=4000;
pd = psd(spectrum.periodogram,u,'Fs',Fs);
plot(pd)
I want to remove the high frequency components(LPF or smooth), so that 'x' is close to practical/measured noise. Does this help?
y=filter(b,a,x);
What should be the coefficients 'b' and 'a' for my applciation? Please help
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Filter Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!