Main Content

영점-극점 분석

zplane 함수는 선형 시스템의 극점과 영점을 플로팅합니다. 예를 들어, -1/2에 영점이 있고 0.9e-j2π0.30.9ej2π0.3에 복소수 극점 쌍이 있는 단순 필터는 다음과 같습니다.

zer = -0.5; 
pol = 0.9*exp(j*2*pi*[-0.3 0.3]');

이 필터에 대한 극점-영점 플롯을 보려면 zplane을 사용하면 됩니다. 시스템이 극점-영점 형태인 경우 열 벡터 인수를 제공하십시오.

zplane(zer,pol)

Figure contains an axes object. The axes object with title Pole-Zero Plot, xlabel Real Part, ylabel Imaginary Part contains 3 objects of type line. One or more of the lines displays its values using only markers

전달 함수 형태의 시스템에 zplane을 사용하려면 행 벡터 인수를 제공하십시오. 이 경우, zplaneroots 함수를 사용하여 분자와 분모의 근을 구하고, 결과로 생성되는 영점과 극점을 플로팅합니다.

[b,a] = zp2tf(zer,pol,1);
zplane(b,a)

Figure contains an axes object. The axes object with title Pole-Zero Plot, xlabel Real Part, ylabel Imaginary Part contains 3 objects of type line. One or more of the lines displays its values using only markers

시스템의 영점-극점과 전달 함수 표현에 대한 자세한 내용은 Discrete-Time System Models 항목을 참조하십시오.

참고 항목

|