diff options
Diffstat (limited to '3515/CH1/EX1.4')
-rw-r--r-- | 3515/CH1/EX1.4/Ex_1_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3515/CH1/EX1.4/Ex_1_4.sce b/3515/CH1/EX1.4/Ex_1_4.sce new file mode 100644 index 000000000..915f50a16 --- /dev/null +++ b/3515/CH1/EX1.4/Ex_1_4.sce @@ -0,0 +1,11 @@ +// Exa 1.4
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+R1= 100;// in kohm
+R2= 500;// in kohm
+V1= 2;// in volt
+Vo= (1+R2/R1)*V1;// in volt
+disp(Vo,"Output voltage for noninverting amplifier in volt")
|