summaryrefslogtreecommitdiff
path: root/3630/CH8/EX8.4/Ex8_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH8/EX8.4/Ex8_4.sce')
-rw-r--r--3630/CH8/EX8.4/Ex8_4.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3630/CH8/EX8.4/Ex8_4.sce b/3630/CH8/EX8.4/Ex8_4.sce
new file mode 100644
index 000000000..d09bed82d
--- /dev/null
+++ b/3630/CH8/EX8.4/Ex8_4.sce
@@ -0,0 +1,9 @@
+clc;
+Vin=[0.002 0.00188]; //Volt
+Av=500;
+Vout1=Av*Vin(1,1); //Volt
+Vout2=Av*Vin(1,2); //Volt
+disp('V',Vout1,"Vout1=");//The answers vary due to round off error
+disp('mV',Vout2*1000,"Vout2=");//The answers vary due to round off error
+
+