diff options
Diffstat (limited to '29/CH11/EX11.2/exa11_2.sce')
-rwxr-xr-x | 29/CH11/EX11.2/exa11_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/29/CH11/EX11.2/exa11_2.sce b/29/CH11/EX11.2/exa11_2.sce new file mode 100755 index 000000000..f0cc432e2 --- /dev/null +++ b/29/CH11/EX11.2/exa11_2.sce @@ -0,0 +1,13 @@ +//Caption:transfer_function
+// example 11_2
+//page 469
+syms G1 G2 G3 H1;
+s=%s;
+G1=4/(s*(s+4));
+G2=s+1.2;
+G3=s+0.8;
+H1=1;
+H2=(G2+G3);
+a=G1/.H1;
+y=a/(1+a*H2)
+disp(y,"C(s)/R(s)=")
\ No newline at end of file |