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

Exp 7

Uploaded by

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

Exp 7

Uploaded by

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

vaishnavi(0105EC231139)

EXPERIMENT NO:7
AIM:TO OBTAIN TRANFER FUNCTION USING MATLAB THAT WOULD BE USED TO
REDUCE LINEAR SYSTEM BLOCKDIAGRAM USING SERIES, PARALLEL AND FEEDBACK
CONFRIGURATION.

clc;
close all;
clear all;
%TF1
n1=[1 2];
d1=[0 1];
printsys(n1,d1);

num/den =

s + 2
-----
1

%TF2
n2=[0 1];
d2=[1 1];
printsys(n2,d2);

num/den =

1
-----
s + 1

%TF3
n3=[1 0 0];
d3=[1 0 2];
printsys(n3,d3);

num/den =

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

%TF4
n4=[1 0 ];
d4=[0 1 ];

1
printsys(n4,d4);

num/den =

s
-
1

%parallel combination
[n5,d5]=parallel(n1,d1,n2,d2);
printsys(n5,d5);

num/den =

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

%feedback
[n6,d6]=parallel(n3,d3,n4,d4);
printsys(n6,d6);

num/den =

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

%series
[n7,d7]=parallel(n5,d5,n6,d6);
printsys(n7,d7);

num/den =

2 s^4 + 5 s^3 + 8 s^2 + 8 s + 6


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

You might also like