summaryrefslogtreecommitdiff
path: root/1340/CH4/EX4.13/4_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1340/CH4/EX4.13/4_13.sce')
-rwxr-xr-x1340/CH4/EX4.13/4_13.sce16
1 files changed, 0 insertions, 16 deletions
diff --git a/1340/CH4/EX4.13/4_13.sce b/1340/CH4/EX4.13/4_13.sce
deleted file mode 100755
index 7e6c85cf6..000000000
--- a/1340/CH4/EX4.13/4_13.sce
+++ /dev/null
@@ -1,16 +0,0 @@
-clc;
-s = %s;
-A =[0 1;-8 -6];
-I = eye(2,2);
-phi = inv(s*I-A);
-disp(phi,"inverse of (sI-A)=");
-syms t;
-for i =1:2
- for j =i:2
- pho(i,j) = ilaplace(phi(i,j),s,t);
-
- end
-end
-disp(pho,"State transition matrix is :");
-
-