blob: 08d365f5ebe44c9ac00e30eb6e5c4037a3fa730c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
syms A s t
G=(A)/(s+A);
R=1/s; //unit step input
C=G*R;
c=ilaplace(C,s,t);
disp(c," c(t) = ")
A=-log(1-0.95)/60 //system attains 95% of final value at t=60
disp(A," A = ")
|