diff options
Diffstat (limited to '74/CH3/EX3.20/example20_sce.sce')
-rwxr-xr-x | 74/CH3/EX3.20/example20_sce.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/74/CH3/EX3.20/example20_sce.sce b/74/CH3/EX3.20/example20_sce.sce new file mode 100755 index 000000000..70d02b022 --- /dev/null +++ b/74/CH3/EX3.20/example20_sce.sce @@ -0,0 +1,8 @@ +// chapter 3
+// example 3.20
+//page 164,figure 3.74
+R1=100*10^3;R2=100*10^3;Rf=470;//given
+// gain=(1+2Rf/Rg)(R2/R1)
+gain=100;//given
+Rg=(((gain/(R2/R1))-1)\(2*Rf));
+disp(Rg)//result for Rg so that gain is 100
\ No newline at end of file |