Azzera filtri
Azzera filtri

how to get the frequency from Pole-zero map?

32 visualizzazioni (ultimi 30 giorni)
Sergio Cypress
Sergio Cypress il 7 Set 2017
Risposto: Star Strider il 9 Set 2017
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 Commenti
Oskar Adolfson
Oskar Adolfson il 7 Set 2017
Isn't the frequency the imaginary part of the poles?
Sergio Cypress
Sergio Cypress il 9 Set 2017
I want get the values into a variety,like that:
handle = pzplot(data)
frequences = handle.frequence()

Accedi per commentare.

Risposte (1)

Star Strider
Star Strider il 9 Set 2017
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.

Categorie

Scopri di più su Signal Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!