blob: ad6443366ee145b994168b5a4e181b84c0cfba76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter 8
//example 8.1
//page 229
clear all;
clc ;
//from drain characteristics of FET
Vgs=[0 -1 -2 -3 -4.5];//gate to source voltage in volts
Id=[9 5.4 2.8 0.9 0];//drain current in mA
plot(Vgs,Id,'colo','red','marker','*','markeredg','blue','markersize',10)
xtitle('FET transfer characteristics','gate to source voltage in volts','drain current in mA')
replot([-5 ,0,1,10])
|