diff options
Diffstat (limited to '165/CH5/EX5.5/ex5_5.sce')
-rw-r--r-- | 165/CH5/EX5.5/ex5_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/165/CH5/EX5.5/ex5_5.sce b/165/CH5/EX5.5/ex5_5.sce new file mode 100644 index 000000000..f72ac87f2 --- /dev/null +++ b/165/CH5/EX5.5/ex5_5.sce @@ -0,0 +1,14 @@ +//Example 5.6
+clc;
+
+//Resolution of 3 1/2 digit display on 1V & 10V
+n=3; //No. of Full Digits
+R=1/10^n; //Resolution is 1/10^n
+
+//For 1V
+R1=R*1;
+disp(R1,'Resolution for 1V is')
+
+//For 10V
+R2=R*10;
+disp(R2,'Resolution for 10V is')
\ No newline at end of file |