summaryrefslogtreecommitdiff
path: root/257/CH13/EX13.8
diff options
context:
space:
mode:
Diffstat (limited to '257/CH13/EX13.8')
-rw-r--r--257/CH13/EX13.8/Example_13_8.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/257/CH13/EX13.8/Example_13_8.sce b/257/CH13/EX13.8/Example_13_8.sce
new file mode 100644
index 000000000..87b57c18c
--- /dev/null
+++ b/257/CH13/EX13.8/Example_13_8.sce
@@ -0,0 +1,12 @@
+syms s X1 X2 X3 U;
+
+T=(s+4)*(s+2)/((s)*(s+1)*(s+3))
+
+disp("state modle is")
+A=[0 1 1; -0 -3 1; 0 0 -1]
+B=[1;1;1]*U
+X=[X1;X2;X3]
+C=[1 0 0];
+D=0;
+disp(A*X+B,"[diff(X1);diff(X2);diff(X3)]=")
+disp(C*X+D,"and Y = ") \ No newline at end of file