summaryrefslogtreecommitdiff
path: root/1499/CH7/EX7.32/q32.sce
diff options
context:
space:
mode:
Diffstat (limited to '1499/CH7/EX7.32/q32.sce')
-rw-r--r--1499/CH7/EX7.32/q32.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1499/CH7/EX7.32/q32.sce b/1499/CH7/EX7.32/q32.sce
new file mode 100644
index 000000000..e5d91c7aa
--- /dev/null
+++ b/1499/CH7/EX7.32/q32.sce
@@ -0,0 +1,25 @@
+A=[0 1 0;0 0 1;0 0 0];
+B=[0;0;1];
+
+[r c]=size(A)
+I=eye(r,c)
+P=cont_mat(A,B);
+disp(P,"Controllability Matrix=")
+d=det(P)
+if d==0
+ printf("matrix is singular, so system is uncontrollable");
+else
+ printf("system is controllable");
+end;
+
+C=[1 0 0];
+P=obsv_mat(A,C);
+disp(P,"Observability Matrix=");
+d=det(P)
+if d==0
+ printf("matrix is singular, so system is unobservable");
+else
+ printf("system is observable");
+end;
+
+