Main Content

임펄스 응답

디지털 필터의 임펄스 응답은 다음과 같이 정의된 단위 임펄스 시퀀스에서 발생하는 출력값입니다.

δ(n)={1,n=0,0,n0.

임펄스 시퀀스는 다양한 방법으로 생성할 수 있습니다. 한 가지 간단한 방법은 다음과 같습니다.

imp = [1; zeros(50,1)];

b=1이고 a=[1-0.9]인 단순 필터의 임펄스 응답은 h(n)=0.9n으로, 지수적으로 감쇠합니다.

b = 1;
a = [1 -0.9];

h = filter(b,a,imp);

stem(0:50,h)

Figure contains an axes object. The axes object contains an object of type stem.

임펄스 응답을 표시하는 간단한 방법은 impz 함수를 사용하는 것입니다.

impz(b,a,51)

Figure contains an axes object. The axes object with title Impulse Response, xlabel n (samples), ylabel Amplitude contains an object of type stem.

참고 항목

함수