blob: 7bd582dffa75959c7b7cfbc25234f58a1dbc594b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
|