Filtering between frequency range
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a matrix of 48X25600 in size. Each row depicts the signal amplitudes at 200 Hz.
I want to filter each row between a particular frequency band (0.05 - 01)Hz.
How do I do it?
댓글 수: 0
채택된 답변
Star Strider
2023년 2월 3일
The function you use depends on how you want to filter them. The filtering functions (includijng filtfilt) operate column-wise (i.e. each column is a different signal), so the filter a matrix row-wise, it will be necessary to do a simple transpose (the .' operator) first.
After that, use either:
y = bandpass(x, [0.05 0.1], Fs, 'ImpulseResponse','iir');
or:
y = bandstop(x, [0.05 0.1], Fs, 'ImpulseResponse','iir');
where ‘Fs’ is the sampling frequency (that I assume is 200 Hz), and ‘x’ is the matrix of signals after transposition.
Transpose the ‘y’ results to put them back in the same orientation as the input matrix ‘x’, if necessary.
.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Bartlett에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!