Borrar filtros
Borrar filtros

Pole Zero Plot of Transfer Fucntion H(z)

14 visualizaciones (últimos 30 días)
moonman
moonman el 10 de Nov. de 2011
Respondida: Hassan el 12 de Feb. de 2024
I am having a transfer function H(z)
H(z)= ((z-1)(z-1)(z-2))/(z.z.z)
How can i have its pole zero map
i know abt pzmap but it is for continuous
  1 comentario
Fangjun Jiang
Fangjun Jiang el 10 de Nov. de 2011
Isn't that the poles and zeros already given?

Iniciar sesión para comentar.

Respuestas (3)

moonman
moonman el 10 de Nov. de 2011
is it good approach. i have actual H(z) in z(-1) form
h = tf([1 -1],[1 -3 2],0.1,'variable','z^-1')
pzmap(h)
  1 comentario
Carla
Carla el 10 de Nov. de 2011
Yes, this will work, and pzmap works fine on discrete-time models.
Your h here is not the same as the transfer function in your original post, though, which you could create with:
H = zpk([1,1,2],[0,0,0],1,0.1)
(using 0.1 for sampling time since you used 0.1 to define h)

Iniciar sesión para comentar.


Honglei Chen
Honglei Chen el 10 de Nov. de 2011
You can use zplane, you can specify either the zero/pole directly or the coefficients. For example, using your equation, you can do either
zplane([1;1;2],[0; 0; 0])
or
zplane(conv(conv([1 -1],[1 -1]),[1 -2]),[1 0 0 0])
See documentation for details
doc zplane
HTH

Hassan
Hassan el 12 de Feb. de 2024
h = tf([1 -1],[1 -3 2],0.1,'variable','z^-1')
pzmap(h)

Categorías

Más información sobre Stability Analysis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by