【发布时间】:2010-12-16 20:36:28
【问题描述】:
如何使用 Matlab 制作简单的低通 FIR 滤波器(不使用内置函数)?
问题示例:
Implement a FIR LPF with cut-off frequency 250Hz
可能还需要给出采样频率...
解决方案尝试或我已经知道的:
x = [...] -> input signal
A = 1; -> Since this is FIR
B = [?????]
y = filter(B, A, x) -> Output signal
Afaik,B 应该包含 FIR 滤波器的系数。但;鉴于我只有截止频率,如何计算这些系数?
【问题讨论】:
标签: matlab filter matrix signal-processing