Use the series and parallel commands in Matlab to find the t
Use the series and parallel commands in Matlab to find the transfer functions of
1. G(s) in series/parallel with H(s)
2. H(s) in series/parallel with T(s)
G(s) = (s+1)/(s^2+4s+10)
H(s) =(s ^2+5s+1)/(s^4+s^3+3s+10)
T(s) = (s+1)/(s+1)(s+2)(s+3)(s+4)
Solution
MATLAB CODE
G = tf([1,1],[1 3 0])
A.)
% SERIES CONNECTION
S = G * H
% PARALLEL CONNECTION
P = G + H
B.)
% SERIES CONNECTION
S1= H * T
% PARALLEL CONNECTION
P1= H + T

