summaryrefslogtreecommitdiff
path: root/257/CH5/EX5.22/example_5_22.sce
blob: 65046d483e65e555cb53f19da29a12e62891df10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
s=%s;
syms t s;

F=(1- (3*%e^(-2*t)) + (2*%e^(-3*t))  );
y=laplace(F,t,s);

G=1
x=laplace(G,t,s);

disp((y/x),"closed loop transfer function is")

T=y/x;

disp((T/(1-T)) , "openloop transfer function is")