summaryrefslogtreecommitdiff
path: root/182/CH9/EX9.12/example9_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '182/CH9/EX9.12/example9_12.sce')
-rwxr-xr-x182/CH9/EX9.12/example9_12.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/182/CH9/EX9.12/example9_12.sce b/182/CH9/EX9.12/example9_12.sce
new file mode 100755
index 000000000..3bb8de37f
--- /dev/null
+++ b/182/CH9/EX9.12/example9_12.sce
@@ -0,0 +1,12 @@
+// to find the minimum time/division sensitivity
+// example 9-12 in page 278
+clc;
+//Data Given
+f=50e+6;// frequency of the waveform in hertz
+//calculation
+T=1/f;//time period in seconds
+printf("using the five times magnifier,\n");
+printf("minimum time/div setting=%d ns/div",5*(T/4)*10^9);// here one cycle occupies 4 horizontal divisions
+//result
+//using the five times magnifier,
+//minimum time/div setting=25 ns/div \ No newline at end of file