Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个作业,我有一个信号,实际上是一个信号的总和,它被要求制作一个 FIR 滤波器,它将削减 40 Hz 以上的频率,并且宽度 N=41,并且它的结构使用一个平方窗口。如何我应该这样做,我找不到命令,然后它说用符号学打印过滤器的传递函数和脉冲响应。请通过提供必要的命令和方法来帮助我。提前致谢。
你有信号处理工具箱吗?
fdatool
tf
bode(sys)
如果您没有工具箱,则必须手动设计滤波器,确定传递函数并使用tf( numerator-vector, denumerator-vector )它来定义它。
tf( numerator-vector, denumerator-vector )