How can I filtrate recorded time acceleration signal with 4th order Butterworth low pass filter ??

조회 수: 15 (최근 30일)
I need to filtrate a recorded time data of acceleration signal with 4th order Butterworth low pass filter of bandwidth 0.1–100 Hz ?? Sample frequency 200 Hz, Time step 0.005 S, Signal length 4048

채택된 답변

Alberto Mora
Alberto Mora 2020년 6월 9일
If you sampled the signal at 200Hz it is useless adopt a low-passfilter at 100Hz since 100Hz is already the maximum bandwidth that you get, see Nyqyust frequency for more detauls. For antialiasing purpose you MUST use analogic filters, not digital filters. So I did not get the reason why you want to filter the signal at 100Hz.
Anyhow, this could be a possible solution.
Fs = 200; % Sampling frequency in Hz
fcutlow = 20; % low cut frequency in Hz
Order = 4;
[b,a] = butter(Order,fcutlow/(Fs/2)); % Get filter coeff of butter filter
Filt_filt_signal = filtfilt(b,a, rawSignal ); % zero phase delay low-pass filtering
As usual, if that helps you, please consider to accept the answer.
Thanks and best regards, A

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by