% Defining Transfer Functions
G = tf([3 2.4], [1 2 3]); % G(s)
C = pid(5); % C(s), proportional control
H = tf(0.25, [1 25]); % H(s)
F1 = feedback(G, H) % group G and H
F3 = feedback(C*F1, H)
F5 = series(1.2, F3) % corresponding CLTF
% checking zeros and poles of the corresponding CLTF
zero(F5)
pole(F5)
F6 = minreal(F5)