blob: fecb271c9021ab23f5dad6e6107953be2af2a664 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 3
//Example 3-7
//ProbOnO/Pvoltage
//Page 51
clear;clc;
Ri=10*10^3;//input resistance in ohm
Gain= 25;
Rf=Gain*Ri;//feedback resistance in ohm
printf("\n\n Value of Rf = %.4f ohm \n\n",Rf)
xcos('Figure3_7.xcos');
|