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

16 ビュー (過去 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