summaryrefslogtreecommitdiff
path: root/2702/CH1/EX1.2/Ex_1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH1/EX1.2/Ex_1_2.sce')
-rw-r--r--2702/CH1/EX1.2/Ex_1_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2702/CH1/EX1.2/Ex_1_2.sce b/2702/CH1/EX1.2/Ex_1_2.sce
new file mode 100644
index 000000000..20a9dc02f
--- /dev/null
+++ b/2702/CH1/EX1.2/Ex_1_2.sce
@@ -0,0 +1,12 @@
+// Exa 1.2
+clc;
+clear;
+close;
+// Given data
+Rf= 200;// in kohm
+R1= 2;// in kohm
+vin=2.5;// in mV
+vin=vin*10^-3;// in volt
+G= -Rf/R1;
+vo= G*vin;// in V
+disp(vo,"The output voltage in volt is : ")