How the increase the affect of lowpass filter on a field data?
Afficher commentaires plus anciens
Hello,
I would like to apply lowpass filter to my temperature data to remove the high frequency noise. I have applied simply 'lowpass' and could not see a significant affect on my data. I have seen several question regarding the lowpass but I am quite new to this area, so maybe missed the point.
sampling_rate=10; %seconds
fs=1/sampling_rate; %Hz
fpass=0:0.01:fs/2;
T35_lp=lowpass(T35,0.01,fs);
Here you can see the applied filter and original data below. They are almost same.

Is there any way to improve the affect of lowpass filter? I appreciate any suggestions.
Thanks!
Réponse acceptée
Plus de réponses (1)
Donya
le 20 Août 2024
0 votes
Hello,
I would like to know how the Fco is found?
1 commentaire
Star Strider
le 20 Août 2024
By looking at the Fourier transform of the original signal. (That is the reason I calculate it in every signal processing problem I encounter.)
The findpeaks function (using the negative of the absolute value of the Fourier transform output), or the islocalmin function can help to localise the frequencies of the minimum values. These can be used to find the best value for ‘Fco’. The choice is somewhat empirical, so it is usually necesary to experiment, since it may not be obvious initially what the best value for it is.
Catégories
En savoir plus sur Multirate Signal Processing 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!

