blob: ffb9af39b6b137d94a871644c2f3f6d67109c0e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter16
//example16.14
//page355
Zout=3 // kilo ohm
Ai=200
mi=0.01
Zout_dash=Zout*(1+mi*Ai)
printf("output impedence with negative feedback = %.3f kilo ohm \n",Zout_dash)
|