Low pass filter that removes all the small ripples
11 次查看(过去 30 天)
显示 更早的评论
hello
I would like a low pass filter that eliminates all the small ripples of this signal
1 个评论
采纳的回答
Star Strider
2019-1-26
I have no idea what signal you want to filter. I assume ‘E’, however ‘E’ does not look the signal you posted.
Try this:
D = load('E.mat');
E = D.E;
N = numel(E); % Vector Length
t = 0 : N-1; % Time Vector (Not Supplied)
Ts = mean(diff(t)); % Sampling Interval
Fs = 1/Ts; % Sampling Frequency
Fn = Fs/2; % Nyquist Frequency
FT_E = fft(E-mean(E))/N; % Fourier Transform
Fv = linspace(0, 1, fix(N/2)+1)*Fn; % Frequency Vector
Iv = 1 : numel(Fv); % Index Vector
figure
plot(Fv, abs(FT_E(Iv))*2)
xlim([0 0.1])
title('Fourier Transform')
Fc = 0.03;
[E_Filt,df] = lowpass(E, Fc, Fs);
figure
plot(t, E_Filt)
title('Filtered Signal')
Look at the ‘Fourier Transform’ plot to decide where you want to put the cutoff frequency (or frequencies, if you decide on a bandpass design instead of a lowpass filter). This code will work with any time vector you want to create for it. You still will have to specify the filter type and cutoffs. If you use the ‘df’ (digitalFilter) output, use the filtfilt function with it to filter your signal.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Digital Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!