summaryrefslogtreecommitdiff
path: root/257/CH13/EX13.10
diff options
context:
space:
mode:
Diffstat (limited to '257/CH13/EX13.10')
-rw-r--r--257/CH13/EX13.10/Example_13_10.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/257/CH13/EX13.10/Example_13_10.sce b/257/CH13/EX13.10/Example_13_10.sce
new file mode 100644
index 000000000..db63a55b8
--- /dev/null
+++ b/257/CH13/EX13.10/Example_13_10.sce
@@ -0,0 +1,8 @@
+syms s U1 U2
+A=[0 3; -2 -5];
+B=[1 1 ; 1 1];
+C=[2 1; 1 0];
+D=[0 0 ; 0 0];
+U=[U1;U2]
+TM= C*inv(s*eye(2,2)-A) *B + D;
+disp(TM*U,"Y = ") \ No newline at end of file