フィルターのクリア

how to filter the noise of a signal

6 ビュー (過去 30 日間)
Luca Tognetti
Luca Tognetti 2023 年 2 月 28 日
回答済み: Mathieu NOE 2023 年 2 月 28 日
Hi, I need to filter the signals when the value is close to 0 (where the noise is much present). as you can see from the picture there is a lot of noise. I attached the .mat file and the picture
I don't need a particular filter, i just need to clean it a bit so I ask you which is the best method.
thanks.

採用された回答

Mathieu NOE
Mathieu NOE 2023 年 2 月 28 日
hello
I was surprised to see that your signal length is very long (730185 samples) and probably you are using a quite high sampling rate for what you really need
so basically I started downsampling your data with decimate (that includes also a low pass filter) and that is enough to already decrease significantly your noise level (which is high freq noise)
as a second step you can add some smoothing with smoothdata (equivalent to a low pass filter without phase distortion)
fyi, you can remove the decimation step if you really need to keep that high amount of data, but for plotting we rarely need more than a few thousands points
Zoom
load('matlab.mat');
% convert to double
F = double(F);
x = 1:numel(F);
% decimate first
r = 25;
Fd = decimate(F,r);
xd = 1:r:x(end);
% then low pass filter
N = 25;
Fs1=smoothdata(Fd,'movmedian',N);
plot(x,F,xd,Fd,xd,Fs1)
legend('raw','decimated','decimated and smoothed');

その他の回答 (2 件)

John D'Errico
John D'Errico 2023 年 2 月 28 日
編集済み: John D'Errico 2023 年 2 月 28 日
This is probably a good task for a median filter.
load matlab.mat
whos
Name Size Bytes Class Attributes F 730185x1 2920740 single ans 1x35 70 char cmdout 1x33 66 char
plot(F)
Fhat = medfilt1(F,100);
plot(Fhat)
Larger values for the second argument will produce a wider window for the filter.
There are many options of course, and many tools you can use.

Joel
Joel 2023 年 2 月 28 日
toleranz=5;
for i=1:length(F)
if abs(F(i))<toleranz
F(i)=0;
end
end
plot(F)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by