discrete fourier transform
Ältere Kommentare anzeigen
hi everyone,
i want to analyze the signal with disturbance using DFT and suppress those disturbance. so pls give me an idea to suppress the disturbance.
thank you in advance.
Akzeptierte Antwort
Weitere Antworten (5)
thangam
am 31 Okt. 2011
0 Stimmen
Wayne King
am 31 Okt. 2011
Fs=1000;
t=0:1/Fs:.3;
x=cos(2*pi*t*200)+randn(size(t));
Hs=spectrum.periodogram; % Use default values
plot(psd(Hs,x,'Fs',Fs))
Then visually inspect the spectrum to see where you would like to pass and where you would like to attenuate. Also note how many dB you would like to attenuate.
1 Kommentar
thangam
am 1 Nov. 2011
thangam
am 1 Nov. 2011
0 Stimmen
1 Kommentar
Wayne King
am 1 Nov. 2011
you have to provide more detail if somebody is going to help you.
Did you read the reference material for fdesign?
thangam
am 5 Nov. 2011
Wayne King
am 5 Nov. 2011
0 Stimmen
Hi, because the filter has been designed as a lowpass filter. When you filter a signal, you multiply its Fourier transform by the Fourier transform of the filter impulse response.
You have designed a lowpass filter, so its action on any input signal is to lowpass filter it and since much of what we call "noise" is higher-frequency oscillations, you get an output with less noise.
However, people often design filters with specific specifications and goals in mind, so it can very well be that a filter that works well in one scenario, must be redesigned to work in another.
Kategorien
Mehr zu Filter Design finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!