How to find frequencies of noise to filter

2 visualizzazioni (ultimi 30 giorni)
Dhanushka Palipana
Dhanushka Palipana il 20 Mag 2020
Risposto: Sai Sri Pathuri il 26 Mag 2020
I want to remove noisy frequencies from a data signal. But, I'm not sure the frequencies of the noise.
I tried fft, but the signal is very single sided, so can't read the specific frequencies from the graph we obtain from the following.
x = Data(:,2)
y = fft(x);
n = length(x); % number of samples
f = (0:n-1)*(fs/n); % frequency range
power = abs(y).^2/n; % power of the DFT
How do we find the specific frequencies of noise from a signal?

Risposte (1)

Sai Sri Pathuri
Sai Sri Pathuri il 26 Mag 2020
You may not require the frequency of noise to remove it from the signal. If you know the frequency of the signal, you may use the one of the following filters in documentation to remove the noise.

Categorie

Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by