function [output] = myfilter(singal,low,high,Fs)
%Author:Justice_Wby 2023.22
%singal 待滤波信号 [low,high]通带区间 Fs信号采样频率
wp=[low/(Fs/2) high/(Fs/2)];
N=128;
b=fir1(N,wp,blackman(N+1));
output = filtfilt(b,1,singal);
end
可用 效果还不错
我的目的为了取0.94这一阶模态
附上通过Matlab可以自己构造滤波器的过程
需要手动在matlab里进行卷积进行调用,而不是通过函数