summaryrefslogtreecommitdiff
path: root/1340/CH7/EX7.14/7_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '1340/CH7/EX7.14/7_14.sce')
-rwxr-xr-x1340/CH7/EX7.14/7_14.sce15
1 files changed, 0 insertions, 15 deletions
diff --git a/1340/CH7/EX7.14/7_14.sce b/1340/CH7/EX7.14/7_14.sce
deleted file mode 100755
index 0ad671187..000000000
--- a/1340/CH7/EX7.14/7_14.sce
+++ /dev/null
@@ -1,15 +0,0 @@
-clc;
-A = [-5 1 0;0 -2 1;20 -10 1];
-C = [-1 1 0];
-B = [0;0;1];
-
-a= inv(A);
-syms t k;
-t = 1/k;
-x = (1+C*a*B);
-y = (C*(a^2)*B);
-disp(x,"steady state error due to step input:");
-
-z = x*t + y;
-sse = limit(z,k,0);
-disp(sse,"steady state error due to ramp input:"); \ No newline at end of file