You are on page 1of 1

MathLab Code:

clear all
close all
clc
s=tf('s');
T1=(24.542)/(s^2+4*s+24.542);
T2=(245.42)/((s+10)*(s^2+4*s+24.542));
T3=(73.626)/((s+3)*(s^2+4*s+24.542));
step(T1,T2,T3)
legend('c1(t)','c2(t)','c3(t)');
xlabel('Time','fontweight','bold','fontsize',10);
ylabel('normalized response','fontweight','bold','fontsize',10);
title('Three responses of C1 C2
C3','fontweight','bold','fontsize',10);
grid on

Published with MATLAB® 7.10

You might also like