blob: 1525c9ab25f6a4d90f0ed331b72ebac734a92f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
disp("Example 4.80")
printf("\n")
disp("determine the suitable value of load resistor Rd of JFET")
printf("Given\n")
//voltage gain
Av=10
//transconductance
gm=4500*10^-6
//load resistance
Rd=Av/gm
printf("load resistance \n%f ohm \n",Rd)
|