0% found this document useful (0 votes)
10 views3 pages

CS 1

The document presents a series of continuous-time transfer functions created using MATLAB's 'tf' function. It includes the definitions of transfer functions G1, G2, G3, G4, H1, and H2, as well as the series and feedback combinations of these functions. The resulting transfer functions from the series and feedback operations are also provided.

Uploaded by

2ab23ec003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views3 pages

CS 1

The document presents a series of continuous-time transfer functions created using MATLAB's 'tf' function. It includes the definitions of transfer functions G1, G2, G3, G4, H1, and H2, as well as the series and feedback combinations of these functions. The resulting transfer functions from the series and feedback operations are also provided.

Uploaded by

2ab23ec003
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

>> n1=[1]

n1 =

>> d1=[1 1]

d1 =

1 1

>> G1=tf(n1,d1)

G1 =

1
-----
s + 1

Continuous-time transfer function.


n2=[1]

n2 =

>> d2=[1 2 1]

d2 =

1 2 1

>> G2=tf(n2,d2)

G2 =

1
-------------
s^2 + 2 s + 1

Continuous-time transfer function.

>> n3=[1]

n3 =

>> d3=[1,3]

d3 = 1 3

>> G3=tf(n3,d3)

G3 =

1
-----
s + 3

Continuous-time transfer function.

>> n4=[1 1]

n4 =

1 1
>> d4=[1 -1]

d4 =

1 -1

>> G4=tf(n4,d4)

G4 =

s + 1
-----
s - 1

Continuous-time transfer function.

>> nh1=[1]

nh1 =

>> dh1=[1 4]

dh1 =

1 4

>> H1=tf(nh1, dh1)

H1 = 1
-----
s + 4

Continuous-time transfer function.

>> nh2=[1 2]

nh2 =

1 2
dh2=[1 5]

dh2 =

1 5

>> H2=tf(nh2,dh2)
H2 =

s + 2
-----
s + 5

Continuous-time transfer function.

>> G1G2=series(G1,G2)

G1G2 =

1
---------------------
s^3 + 3 s^2 + 3 s + 1

Continuous-time transfer function.

>> fb1=feedback(G1G2,H1,-1)

fb1 =

s + 4
-------------------------------
s^4 + 7 s^3 + 15 s^2 + 13 s + 5

Continuous-time transfer function.

>> G3G4=series(G3,G4)

G3G4 =

s + 1
-------------
s^2 + 2 s - 3

Continuous-time transfer function.

>> fb2=feedback(G3G4,H2,-1)

fb2 =

s^2 + 6 s + 5
-----------------------
s^3 + 8 s^2 + 10 s - 13

Continuous-time transfer function.

>>

You might also like