diff options
Diffstat (limited to '1340/CH7/EX7.13/7_13.sce')
-rwxr-xr-x | 1340/CH7/EX7.13/7_13.sce | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/1340/CH7/EX7.13/7_13.sce b/1340/CH7/EX7.13/7_13.sce deleted file mode 100755 index 23f0770e0..000000000 --- a/1340/CH7/EX7.13/7_13.sce +++ /dev/null @@ -1,20 +0,0 @@ -s = %s;
-A = [-5 1 0;0 -2 1;20 -10 1];
-B = [0;0;1];
-C = [-1 1 0];
-[S1]=syslin('c',A,B,C,0);
-ssprint(S1);
-syms t s;
-tf = ss2tf(S1);
-disp(tf);
-
-R = laplace(1,t,s);
-E = R*(1- tf);
-sse = limit(s*E,s,0);
-disp(sse,"steady state error for step input:");
-
-R = laplace(t,t,s);
-E = R*(1- tf);
-sse = limit(s*E,s,0);
-disp(sse,"steady state error for ramp input:");
-printf("G(s)is type-0 system");
|