diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2753/CH4/EX4.17 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2753/CH4/EX4.17')
-rwxr-xr-x | 2753/CH4/EX4.17/Ex4_17.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2753/CH4/EX4.17/Ex4_17.sce b/2753/CH4/EX4.17/Ex4_17.sce new file mode 100755 index 000000000..babda515c --- /dev/null +++ b/2753/CH4/EX4.17/Ex4_17.sce @@ -0,0 +1,20 @@ +//Example 4.17: +clc; +clear; +close; +//given data : +format('v',5) +A=200;//gain without feedback +Beta=0.05;//feed back ratio +Af=(A/(1+(Beta*A)));//gain with feedback +disp(Af," gain with negative feedback is ,=") +Dn=10;//percentage distortion +format('v',6) +Dn1=(Dn/(1+A*Beta));//percentage Distortion with negative feedback +ff=Beta*A;//feedback factor +vo=0.5;//initial output voltage +vi=A*vo;//in V +vin=vi/Af;//in V +disp(Dn1,"percentage Distortion with negative feedback is ,(%)=") +disp(vin,"new input voltage is ,(V)=") +//gain and input voltage are calculated wrong in the textbook |