summaryrefslogtreecommitdiff
path: root/3637/CH4/EX4.20/Ex4_20.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH4/EX4.20/Ex4_20.sce')
-rw-r--r--3637/CH4/EX4.20/Ex4_20.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3637/CH4/EX4.20/Ex4_20.sce b/3637/CH4/EX4.20/Ex4_20.sce
new file mode 100644
index 000000000..734dff82c
--- /dev/null
+++ b/3637/CH4/EX4.20/Ex4_20.sce
@@ -0,0 +1,15 @@
+//problem 20 pagenumber 4.46
+//given
+vref=10;//volt
+z=['01','0111','10111100'];format(6);
+n=2;
+v0=vref*(1/2^2);
+disp('Output voltage at '+string(z(1))+' = '+string(v0)+' volt');
+n=4
+v0=vref*(1/2^2+1/2^3+1/2^4);
+disp('Output voltage at '+string(z(2))+' = '+string(v0)+' volt');
+v0=vref*(1/2+1/2^3+1/2^4+1/2^5+1/2^6+1/2^8);
+disp('Output voltage at '+string(z(2))+' = '+string(v0)+' volt');
+
+
+