diff options
Diffstat (limited to 'Working_Examples/3885/CH3/EX3.1/Ex3_1.sci')
-rwxr-xr-x | Working_Examples/3885/CH3/EX3.1/Ex3_1.sci | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Working_Examples/3885/CH3/EX3.1/Ex3_1.sci b/Working_Examples/3885/CH3/EX3.1/Ex3_1.sci new file mode 100755 index 0000000..24461f2 --- /dev/null +++ b/Working_Examples/3885/CH3/EX3.1/Ex3_1.sci @@ -0,0 +1,18 @@ +//control systems by Nagoor Kani A
+//Edition 3
+//Year of publication 2015
+//Scilab version 6.0.0
+//operating systems windows 10
+// Example 3.1
+
+clc;
+clear;
+s=%s
+p=poly([4],'s','coeff')
+q=poly([0 5 1],'s','coeff')
+g=p./q
+disp(g,'The given transfer function is')
+c=g/(1+g)
+disp(c,'The closed loop transfer function is')
+u=c/s
+disp(u,'The input is unit step signal')
|