summaryrefslogtreecommitdiff
path: root/1340/CH4/EX4.11
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 10:59:42 +0530
committerprashantsinalkar2018-02-03 10:59:42 +0530
commitd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (patch)
tree612077a22c8142c0ae754ec11882a4e7d5dc25a4 /1340/CH4/EX4.11
parentf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (diff)
downloadScilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.gz
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.bz2
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.zip
Modified the code
Diffstat (limited to '1340/CH4/EX4.11')
-rwxr-xr-x1340/CH4/EX4.11/4_11.sce17
1 files changed, 0 insertions, 17 deletions
diff --git a/1340/CH4/EX4.11/4_11.sce b/1340/CH4/EX4.11/4_11.sce
deleted file mode 100755
index 3a61d1b3a..000000000
--- a/1340/CH4/EX4.11/4_11.sce
+++ /dev/null
@@ -1,17 +0,0 @@
-s = %s;
-A = [0 1 0;0 0 1;-24 -26 -9];
-B = [0;0;1];
-C = [1 1 0];
-x0 = [1;0;2];
-I = eye(3,3);
-syms t ;
-U = syslin('c', 1/(s+1));
-disp(U,"U(s)=");
-L = inv(s*I-A)*(x0+B*U);disp(L,"x1,x2 and x3 are :");
-Y = C*L;
-disp(Y,"Y(s)=");
-y = ilaplace(Y,s,t);disp(y,"output y(t)=");
-D = det(s*I-A);
-printf("Roots are the eigenvalues of the system");
-root = roots(D);
-disp(root,"eigenvalues");