how to get the frequency from Pole-zero map?
이전 댓글 표시

I use pzplot() function to plot the Pole-zero map(figure 1), and the legend shows the every poles' information once the narrow click the figure. And I want to storage the infrom into a variety. so could you help me how to do?
댓글 수: 2
Oskar Adolfson
2017년 9월 7일
Isn't the frequency the imaginary part of the poles?
Sergio Cypress
2017년 9월 9일
답변 (1개)
Star Strider
2017년 9월 9일
The resonant frequencies (poles) are given by the absolute value of the poles of the continuous system.
Example —
H = tf([1 -1],[1 1 0.3],0.1); % Discrete System
pzmap(H)
grid on
axis equal
Hc = d2c(H); % Convert To Continuous
fr = abs(pole(Hc)); % Resonant Frequencies
I know of no other way to do what you want.
카테고리
도움말 센터 및 File Exchange에서 数字滤波器分析에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!