summaryrefslogtreecommitdiff
path: root/22/CH10/EX10.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /22/CH10/EX10.4
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '22/CH10/EX10.4')
-rwxr-xr-x22/CH10/EX10.4/ch10ex4.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/22/CH10/EX10.4/ch10ex4.sce b/22/CH10/EX10.4/ch10ex4.sce
new file mode 100755
index 000000000..d429c2a27
--- /dev/null
+++ b/22/CH10/EX10.4/ch10ex4.sce
@@ -0,0 +1,11 @@
+//signals and systems
+//state space analysis
+//state space description
+clear;
+close;
+clc;
+s=poly(0,'s');
+H=[(4/3)/(1+s),-2/(3+s), (2/3)/(4+s)];
+Sys=tf2ss(H)
+clean(ss2tf(Sys))
+disp(Sys) \ No newline at end of file