0% found this document useful (0 votes)
73 views7 pages

Deng 500 0 0

The document contains calculations for 9 transfer functions (sys1 through sys9) by defining numerator and denominator polynomials (numg, deng, numh, denh) and combining simple transfer functions using operations like series, parallel and feedback. Transfer functions represent systems of increasing complexity, from single poles and zeros to higher order polynomials.

Uploaded by

Fajri Hakim
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)
73 views7 pages

Deng 500 0 0

The document contains calculations for 9 transfer functions (sys1 through sys9) by defining numerator and denominator polynomials (numg, deng, numh, denh) and combining simple transfer functions using operations like series, parallel and feedback. Transfer functions represent systems of increasing complexity, from single poles and zeros to higher order polynomials.

Uploaded by

Fajri Hakim
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
You are on page 1/ 7

numg=[1];deng=[500 0 0];

sysg=tf(numg,deng);
numh=[1 1];denh=[1 2];
sysh=tf(numh,denh);
sys1=series(sysg,sysh);
numg=[1];deng=[500 0 0];
sysg=tf(numg,deng);
numh=[1 1];denh=[1 2];
sysh=tf(numh,denh);
sys2=parallel(sysg,sysh);
numg=[1];deng=[1 10];
sysg=tf(numg,deng);
numh=[1];denh=[1 1];
sysh=tf(numh,denh);
sys3=series(sysg,sysh);
numg=[1];deng=[1 10];
sysg=tf(numg,deng);
numh=[1];denh=[1 1];
sysh=tf(numh,denh);
sys4=parallel(sysg,sysh);
numg=[6 0 1];deng=[1 3 3 1];
sysg=tf(numg,deng);
numh=poly([-1 -2]);denh=poly([-2*i 2*i -3]);
sysh=tf(numh,denh);
sys5=series(sysg,sysh);
numg=[6 0 1];deng=[1 3 3 1];
sysg=tf(numg,deng);
numh=poly([-1 -2]);denh=poly([-2*i 2*i -3]);
sysh=tf(numh,denh);
sys6=parallel(sysg,sysh);
numg=[1 -3];deng=[1 -5 4];
sysg=tf(numg,deng);
numh=[5 -8];denh=[1 2];
sysh=tf(numh,denh);
sys7=feedback(sysg,sysh);
numg=[1 0 1];deng=[1 4 4];
sysg=tf(numg,deng);
numh=[1];denh=[1 1];
sysh=tf(numh,denh);
sys8=feedback(sysg,sysh);
numg=[1];deng=poly([0 -2]);
sysg=tf(numg,deng);
numh=[3];denh=[1];
sysh=tf(numh,denh);
sys9=feedback(sysg,sysh);

deng =

500 0 0

Transfer function:
1
-------
500 s^2

denh =

1 2

Transfer function:
s+1
-----
s+2

Transfer function:
s+1
------------------
500 s^3 + 1000 s^2

deng =

500 0 0

Transfer function:
1
-------
500 s^2

denh =

1 2

Transfer function:
s+1
-----
s+2

Transfer function:
500 s^3 + 500 s^2 + s + 2
-------------------------
500 s^3 + 1000 s^2

deng =

1 10

Transfer function:
1
------
s + 10

denh =

1 1

Transfer function:
1
-----
s+1

Transfer function:
1
---------------
s^2 + 11 s + 10

deng =

1 10

Transfer function:
1
------
s + 10

denh =

1 1
Transfer function:
1
-----
s+1

Transfer function:
2 s + 11
---------------
s^2 + 11 s + 10

deng =

1 3 3 1

Transfer function:
6 s^2 + 1
---------------------
s^3 + 3 s^2 + 3 s + 1

denh =

1 3 4 12

Transfer function:
s^2 + 3 s + 2
----------------------
s^3 + 3 s^2 + 4 s + 12

Transfer function:
6 s^4 + 18 s^3 + 13 s^2 + 3 s + 2
--------------------------------------------------
s^6 + 6 s^5 + 16 s^4 + 34 s^3 + 51 s^2 + 40 s + 12

deng =

1 3 3 1
Transfer function:
6 s^2 + 1
---------------------
s^3 + 3 s^2 + 3 s + 1

denh =

1 3 4 12

Transfer function:
s^2 + 3 s + 2
----------------------
s^3 + 3 s^2 + 4 s + 12

Transfer function:
7 s^5 + 24 s^4 + 39 s^3 + 91 s^2 + 13 s + 14
--------------------------------------------------
s^6 + 6 s^5 + 16 s^4 + 34 s^3 + 51 s^2 + 40 s + 12

deng =

1 -5 4

Transfer function:
s-3
-------------
s^2 - 5 s + 4

denh =

1 2

Transfer function:
5s-8
-------
s+2

Transfer function:
s^2 - s - 6
-----------------------
s^3 + 2 s^2 - 29 s + 32

deng =

1 4 4

Transfer function:
s^2 + 1
-------------
s^2 + 4 s + 4

denh =

1 1

Transfer function:
1
-----
s+1

Transfer function:
s^3 + s^2 + s + 1
---------------------
s^3 + 6 s^2 + 8 s + 5

deng =

1 2 0

Transfer function:
1
---------
s^2 + 2 s

denh =
1

Transfer function:
3

Transfer function:
1
-------------
s^2 + 2 s + 3

>>

You might also like