blob: ba54c7b9811e1ae3105fe52f0536dcb84e684587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter16
//example16.1
//page345
Av=3000
mv=0.01
Avf=Av/(1+Av*mv)
printf("voltge gain with negative feedback = %.3f \n",Avf)
// accurate answer is 96.774 but in book it is given as 97
|