I need to find difference equation and frequency response

조회 수: 4 (최근 30일)
Noel
Noel 2011년 11월 15일
Given H(z)=(-3+z^z-1)/(1+2z^-1+3z^-2)
a) Find the difference equation
b) Plot the frequency response

답변 (2개)

Walter Roberson
Walter Roberson 2011년 11월 15일
However, it appears to me that your equation probably cannot be analyzed through these techniques, as it is not in the form of a ratio of polynomials. The z^z term is going to lead you to a lot of problems.

Naz
Naz 2011년 11월 15일
Difference equation (I assume that z^z-1 should be z^-1):
3y[n-2]+2y[n-1]+y[n]=-3x[n]+z[n-1]
Frequency response:
B=[-3 1];
A=[1 2 3];
[H,W] = freqz(B,A);
plot(W,H);
  댓글 수: 2
Naz
Naz 2011년 11월 15일
The frequency is normalized to pi
Walter Roberson
Walter Roberson 2011년 11월 15일
My speculation was that the z^z-1 should be z^2 - 1 but that doesn't make sense with the leading -3 . So I still don't know what was intended.

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

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by