diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /165/CH5/EX5.5/ex5_5.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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 |