blob: 7ffdcff4109780ee72feaf7516107764aa3c3d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Tested on Windows 7 Ultimate 32-bit
//Chapter 7 Field Effect Transistors Pg no. 237 and 238
clear;
clc;
//Given Data
gm=5D-3;//transconductance in Siemens
RD=1D3;//drain resistance in ohms
//Solution
GV=gm*RD;//voltage gain
printf("GV = %d",GV);
|