summaryrefslogtreecommitdiff
path: root/122/CH2/EX2.a.12
diff options
context:
space:
mode:
Diffstat (limited to '122/CH2/EX2.a.12')
-rwxr-xr-x122/CH2/EX2.a.12/exaA_2_12.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/122/CH2/EX2.a.12/exaA_2_12.sce b/122/CH2/EX2.a.12/exaA_2_12.sce
new file mode 100755
index 000000000..8000082a9
--- /dev/null
+++ b/122/CH2/EX2.a.12/exaA_2_12.sce
@@ -0,0 +1,18 @@
+// Example A-2-12
+// Conversion from state space model to transfer function model
+// for a multiple input multiple output system
+
+clear; clc; close;
+
+// Please edit the path below
+// cd "/your code directory/";
+// exec("transferf.sci");
+
+A = [0 1; -25 -4];
+B = [1 1; 0 1];
+C = [1 0; 0 1];
+D = [0 0; 0 0];
+
+Htf = transferf(A,B,C,D) // Htf is the tranfer function matrix,
+disp(Htf,'Htf ='); // with four transfer functions -
+ // Htf(1,1),Htf(1,2),Htf(2,1),Htf(2,2);