0% found this document useful (0 votes)
3 views5 pages

Continuous-Time Transfer Function Analysis

The document contains code to analyze transfer functions through calculating zeros and poles. It defines three transfer functions with different numerators and denominators, calculates their zeros and poles, and plots their root locus. The transfer functions are analyzed using commands like tf, tf2zp, and rlocus to obtain characteristics and stability.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views5 pages

Continuous-Time Transfer Function Analysis

The document contains code to analyze transfer functions through calculating zeros and poles. It defines three transfer functions with different numerators and denominators, calculates their zeros and poles, and plots their root locus. The transfer functions are analyzed using commands like tf, tf2zp, and rlocus to obtain characteristics and stability.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

4) Demostrar

num=[1 3];
den=[1 1 4];
sys=tf(num,den)
[ceros,polos]=tf2zp(num,den)
rlocus(sys)
grid

ejercicio_4

sys =

s+3

-----------

s^2 + s + 4

Continuous-time transfer function.

ceros =

-3
polos =

-0.5000 + 1.9365i

-0.5000 - 1.9365i
num=[50000];
den=[1 50.5 1725 0];
sys=tf(num,den)
[ceros,polos]=tf2zp(num,den)
rlocus(sys)
grid

ejercicios_5

sys =

50000
-----------------------
s^3 + 50.5 s^2 + 1725 s

Continuous-time transfer function.

ceros =

Empty matrix: 0-by-1

polos =

0.0000 + 0.0000i
-25.2500 +32.9763i
-25.2500 -32.9763i
6) demostrar
num=[1 13 36];
den=[1 10 32 71];
sys=tf(num,den)
sisotool(sys)
grid

ejercicio_6

sys =

s^2 + 13 s + 36

------------------------

s^3 + 10 s^2 + 32 s + 71

Continuous-time transfer function.

You might also like