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 /3836/CH5/EX5.2/Ex5_2.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 '3836/CH5/EX5.2/Ex5_2.sce')
-rw-r--r-- | 3836/CH5/EX5.2/Ex5_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3836/CH5/EX5.2/Ex5_2.sce b/3836/CH5/EX5.2/Ex5_2.sce new file mode 100644 index 000000000..97010fc6b --- /dev/null +++ b/3836/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,22 @@ +clear +//Initialisation +n=8 //8 bit +n2=16 //16 bit +n3=32 //32 bit + + +//Calculation +c=2**n //value for 8 bit +p=(1*c**-1)*100 //percent +c2=2**n2 //value for 16 bit +p2=(1*c2**-1)*100 //percent +c3=2**n3 //value for 32 bit +p3=(1*c3**-1)*100 //percent + +//Result +printf("\n An 8-bit word resolution = %.2f percent\n",p) + +printf("\n An 16-bit word resolution = %.4f percent\n",p2) + +printf("\n An 32-bit word resolution = %.9f percent\n",p3) + |