How to use filter() if I don't have the transfer function?

2 次查看(过去 30 天)
I have been provided with an impulse response h (vector of length 3) and an input signal x (vector of length 10).
I need to use the filter() function to perform FIR filtering on the input, but the function requires a transfer function as arguments:
From the documentation:
"y = filter(b,a,x) filters the input data x using a rational transfer function defined by the numerator and denominator coefficients b and a."
How do I get values for a and b so that I can use the function?

采纳的回答

Mathieu NOE
Mathieu NOE 2021-5-17
hello
you have a FIR filter , and in that case the numerator b is equal to the h impulse response coefficients
the denominator a is equal to 1
  2 个评论
Samuel O'Neill
Samuel O'Neill 2021-5-17
Thanks, but i'm not sure what you mean about b.
If I have an impulse response of [0.2 0.3 0.2], then what is b?
Mathieu NOE
Mathieu NOE 2021-5-17
I'm talking about this b and a : "y = filter(b,a,x)
and b = [0.2 0.3 0.2
a = 1

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Design 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by