diff options
Diffstat (limited to '3637/CH4/EX4.2/Ex4_2.sce')
-rw-r--r-- | 3637/CH4/EX4.2/Ex4_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3637/CH4/EX4.2/Ex4_2.sce b/3637/CH4/EX4.2/Ex4_2.sce new file mode 100644 index 000000000..64d9e4a3d --- /dev/null +++ b/3637/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,11 @@ +//problem 2 pagenumber 4.38
+//given
+r=20e-3;format(6);
+z='11000000';
+n=8;
+vof=r*(2^n-1);
+v0=r*base2dec(z,2);
+disp('Output offset = '+string(vof)+' volt');
+disp('Output voltage = '+string(v0)+' volt');
+
+
|