blob: 629a75f346a533dacb4babadad709e09755ff9b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//chapter16
//example16.4
//page346
Vo=10
Vi=0.25
Vif=0.5
Av=Vo/Vi
Avf=Vo/Vif
// since Avf=Av/(1+Av*mv), we get
mv=(Av/Avf-1)/Av
printf("fraction of output fed back to input = %.3f \n",mv)
|