Filter design - are taps the same are difference equation coefficients?

조회 수: 1 (최근 30일)
Are taps the same are difference equation coefficients?
I'm not sure how they can be actually - or if they are I don't know how they relate.
  댓글 수: 1
Matt Fig
Matt Fig 2012년 11월 2일
Tom's question
Are taps the same are difference equation coefficients?
I'm not sure how they can be actually - or if they are I don't know how they relate.

댓글을 달려면 로그인하십시오.

채택된 답변

Wayne King
Wayne King 2012년 5월 21일
Yes, they are. The filter coefficients are also call taps, or tap weights.

추가 답변 (1개)

Honglei Chen
Honglei Chen 2012년 5월 21일
For example, the difference equation below represents a 2nd order IIR filter
y[n] = -a1*y[n-1]-a2*y[n-2] + b0*x[n] + b1*x[n-1] + b2*x[n-2]
The corresponding coefficients are
b = [b0 b1 b2] and a = [1 a1 a2]
To perform the filtering operation, you can do
y = filter(b,a,x)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by