LPF a random signal
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Filter Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!