summaryrefslogtreecommitdiff
path: root/1859/CH8/EX8.17/exa_8_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1859/CH8/EX8.17/exa_8_17.sce')
-rwxr-xr-x1859/CH8/EX8.17/exa_8_17.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1859/CH8/EX8.17/exa_8_17.sce b/1859/CH8/EX8.17/exa_8_17.sce
new file mode 100755
index 000000000..9a4b647c3
--- /dev/null
+++ b/1859/CH8/EX8.17/exa_8_17.sce
@@ -0,0 +1,14 @@
+// Exa 8.17
+clc;
+clear;
+close;
+// Given data
+f= 20;// in MHz
+f=f*10^6;// in Hz
+toh= 1/f;// in sec
+toh=toh*10^9;// in ns
+// For one cycle occupying 4 horizontal divisions,
+MTD= toh/4;// Minimum time/division in ns/division
+// Using the 10 times magnifier to provide MTD
+MTD_setting= 10*MTD;// minimum time/division setting in ns/division
+disp(MTD_setting,"Minimum time/division setting in ns/division")