summaryrefslogtreecommitdiff
path: root/1340/CH6/EX6.5/6_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1340/CH6/EX6.5/6_5.sce')
-rwxr-xr-x1340/CH6/EX6.5/6_5.sce15
1 files changed, 0 insertions, 15 deletions
diff --git a/1340/CH6/EX6.5/6_5.sce b/1340/CH6/EX6.5/6_5.sce
deleted file mode 100755
index 1c930dbed..000000000
--- a/1340/CH6/EX6.5/6_5.sce
+++ /dev/null
@@ -1,15 +0,0 @@
-clc;
-s = %s;
-G = s^8+s^7+12*s^6+22*s^5+39*s^4+59*s^3+48*s^2+38*s+20;
-x = routh_t(G);
-disp(x);c = 0;
-for i = 1:length(coeff(G))
- if(x(i,1)<0)
- c=c+1;
- end
- end
-
- if(c>=1)
- printf("poles in RHP,thus unstable");
- else printf("stable system") ;
- end \ No newline at end of file