diff options
Diffstat (limited to '3809/CH14/EX14.2/EX14_2.sce')
-rw-r--r-- | 3809/CH14/EX14.2/EX14_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3809/CH14/EX14.2/EX14_2.sce b/3809/CH14/EX14.2/EX14_2.sce new file mode 100644 index 000000000..7bd582dff --- /dev/null +++ b/3809/CH14/EX14.2/EX14_2.sce @@ -0,0 +1,19 @@ +//Chapter 14, Example 14.2
+clc
+//Initialisation
+A1=100000 //gain of an amplifier A
+B=0.0001 //gain of an amplifier B
+A2=200000 //gain of an amplifier A
+
+//Calculation
+G1=A1/(1+(A1*B)) //overall gain
+G2=A2/(1+(A2*B)) //overall gain
+
+
+//Results
+printf("if gain of the amplifier A = 100,000\n")
+printf("G = %d\n\n",G1)
+printf("if gain of the amplifier A = 200,000\n")
+printf("G = %d",G2)
+
+
|