summaryrefslogtreecommitdiff
path: root/3871/CH16/EX16.9/Ex16_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH16/EX16.9/Ex16_9.sce')
-rw-r--r--3871/CH16/EX16.9/Ex16_9.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3871/CH16/EX16.9/Ex16_9.sce b/3871/CH16/EX16.9/Ex16_9.sce
new file mode 100644
index 000000000..7f56e39d2
--- /dev/null
+++ b/3871/CH16/EX16.9/Ex16_9.sce
@@ -0,0 +1,15 @@
+//=====================================================================================
+//Chapter 16 example 9
+clc;clear all;
+
+//variable declaration
+f = 2000; //frequency in Hz
+D = 0.2; //duty cycle
+
+//calculations
+T = 1/(f); //time period in ms
+d = D*T; //pulse duration in ms
+
+//result
+mprintf("pulse duration = %3.2f ms",(d*10^3));
+