How to use filter() if I don't have the transfer function?
4 ビュー (過去 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?
0 件のコメント
採用された回答
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
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Digital Filter Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!