diff options
Diffstat (limited to '2102/CH6/EX6.1')
-rwxr-xr-x | 2102/CH6/EX6.1/exa_6_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH6/EX6.1/exa_6_1.sce b/2102/CH6/EX6.1/exa_6_1.sce new file mode 100755 index 000000000..368eb0163 --- /dev/null +++ b/2102/CH6/EX6.1/exa_6_1.sce @@ -0,0 +1,15 @@ +// Exa 6.1
+clc;
+clear;
+close;
+// Given data
+I_DSS= 10;// in mA
+V_P= -4;// in V
+ V_GS=[-4:0.1:0];
+//V_GS= -3;
+I_D= I_DSS*(1-V_GS/V_P)^2
+plot(V_GS,I_D);
+xlabel("V_GS in volts");
+ylabel("I_D in mA")
+title("The transfer curve")
+disp("Curve is shown in figure")
|