diff options
Diffstat (limited to '2702/CH1/EX1.3/Ex_1_3.sce')
-rw-r--r-- | 2702/CH1/EX1.3/Ex_1_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2702/CH1/EX1.3/Ex_1_3.sce b/2702/CH1/EX1.3/Ex_1_3.sce new file mode 100644 index 000000000..91fab23b2 --- /dev/null +++ b/2702/CH1/EX1.3/Ex_1_3.sce @@ -0,0 +1,13 @@ +// Exa 1.3
+clc;
+clear;
+close;
+// Given data
+G=-10;
+Ri= 100;// in kohm
+R1= Ri;// in kohm
+R1=R1*10^3;// in ohm
+// Formula G=-R2/R1
+R2= R1*abs(G);// ohm
+disp(R1*10^-3,"Value of R1 in kohm is : ")
+disp(R2*10^-6,"and value of R2 in Mohm is : ")
|