blob: 4d0effc6933fb7b1f4982b754f1bd08cf6ef1853 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter16
//example16.13
//page354
Zin=15// kilo ohm
Ai=240
mi=0.015
Zin_dash=Zin/(1+mi*Ai)
printf("input impedence with negative feedback = %.3f kilo ohm \n",Zin_dash)
|