diff options
Diffstat (limited to '3871/CH14/EX14.4/Ex14_4.sce')
-rw-r--r-- | 3871/CH14/EX14.4/Ex14_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3871/CH14/EX14.4/Ex14_4.sce b/3871/CH14/EX14.4/Ex14_4.sce new file mode 100644 index 000000000..e2c726603 --- /dev/null +++ b/3871/CH14/EX14.4/Ex14_4.sce @@ -0,0 +1,14 @@ +//=====================================================================================
+//Chapter 14 example 4
+clc;
+clear al;
+
+//variable declaration
+N = 45; //count
+t = 0.01; //gate enable time in s
+
+//calculations
+f = N/t; //frequency in Hz
+
+//result
+mprintf("frequency = %3.1f kHz",(f*10^-3));
|