diff options
Diffstat (limited to '1151/CH8/EX8.34/example34.sce')
-rwxr-xr-x | 1151/CH8/EX8.34/example34.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1151/CH8/EX8.34/example34.sce b/1151/CH8/EX8.34/example34.sce new file mode 100755 index 000000000..3bb3caaad --- /dev/null +++ b/1151/CH8/EX8.34/example34.sce @@ -0,0 +1,9 @@ +s=%s ;
+//create state equation of the following matrix
+TFcont=syslin ('c',(s+6)/(s^2+5*s+6))
+SScont=tf2ss(TFcont )
+[Ac ,Bc ,U, ind ]=canon( SScont ( 2 ) , SScont ( 3 ) )
+disp(Ac,"MAtrix A=")
+disp(Bc,"MAtrix B=")
+
+
|