matlab中数字信号的低通滤波器
我对使用 matlab 和信号处理不太熟悉,不知道如何实现低通滤波器。我有这些数字信号,它是一个矢量,希望通过 40hz 的低通滤波器运行它,或者如果可能的话,通过带通滤波器 0.53-40hz(12db/oct)。我可以访问信号处理工具箱,但不知道如何访问。任何帮助表示赞赏。
I am new to using matlab and signal processing in general and can't figure out how to implement a low pass filter. I have these digital signal that's a vector and would like to run it through a low pass fiter of 40hz or if at all possible a bandpass filter .53-40hz (12db/oct). I have access to the signal processing toolbox but can't figure out how. Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Matlab 中应用数字滤波器有不止一种选择。该文档非常好,因此这是查看它并遵循示例的一个很好的起点:
conv
使用过滤器进行过滤FIR滤波器There is more then one option to applying a digital filter in Matlab. The doc is very good, so it is a good starting point to look at it and follow the examples:
conv
for filtering using a FIR filter