Pole Zero plot is giving wrong plot
Mostrar comentarios más antiguos
Hi,
I've used 'pzmap' to create ploe zero plot of a transfer function. According to the transfer function used, all the poles of it should be on the imaginary axis. But this is not the case in the output.
code:- >> num=[3]; >> den=[1 0 10 0 9 0]; >> sys=tf(num,den)
Transfer function: 3 ------------------ s^5 + 10 s^3 + 9 s
>> pzmap(sys)
Respuesta aceptada
Más respuestas (1)
Honglei Chen
el 17 de Oct. de 2011
If you look at the ticks of the real axes, you can see that the scale is 10e-16. So practically it is on the imaginary axis. If you want to see a better picture, you can do the following to rescale the axes
axis([-1 1 -5 5])
HTH
Categorías
Más información sobre Uncertainty Analysis en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!