summaryrefslogtreecommitdiff
path: root/165/CH5/EX5.6/ex5_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '165/CH5/EX5.6/ex5_6.sce')
-rw-r--r--165/CH5/EX5.6/ex5_6.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/165/CH5/EX5.6/ex5_6.sce b/165/CH5/EX5.6/ex5_6.sce
new file mode 100644
index 000000000..81227769d
--- /dev/null
+++ b/165/CH5/EX5.6/ex5_6.sce
@@ -0,0 +1,14 @@
+//Example 5.6
+clc;
+
+//A 4 1/2 digit display
+n=4; //No. of full digits
+R=1/10^n; //Resolution
+disp(R,'Resolution')
+
+//Resolution for 10V
+R10=R*10;
+disp(R10,'Resolution for 10V range')
+printf('\n12.98 V is displayed as %2.3f',12.98)
+printf('\n0.6973 V is displayed as %.4f',0.6973)
+printf('\n0.6973 V is displayed as %.3f',0.6973) \ No newline at end of file