diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1133/CH9/EX9.35 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1133/CH9/EX9.35')
-rwxr-xr-x | 1133/CH9/EX9.35/Example9_35.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1133/CH9/EX9.35/Example9_35.sce b/1133/CH9/EX9.35/Example9_35.sce new file mode 100755 index 000000000..c3371b6f1 --- /dev/null +++ b/1133/CH9/EX9.35/Example9_35.sce @@ -0,0 +1,9 @@ +//Example 9.35
+clc
+disp("For given DAC, n = 4, V_0FS = +5 V")
+disp("Resolution = V_0FS / 2^n - 1 = 1/3 V/LSB")
+disp("Therefore, V0 = Resolution * D")
+disp("For D = Decimal od 10000 = 8")
+disp(" V0 = 1/3 * 8 = 2.6667 V")
+disp("For D = Decimal of 1111 = 15")
+disp(" V0 = 1/3 * 15 = 5 V")
|