summaryrefslogtreecommitdiff
path: root/3754/CH13/EX13.6
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH13/EX13.6')
-rw-r--r--3754/CH13/EX13.6/13_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH13/EX13.6/13_6.sce b/3754/CH13/EX13.6/13_6.sce
new file mode 100644
index 000000000..8e196eeee
--- /dev/null
+++ b/3754/CH13/EX13.6/13_6.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+T = 0.04 * 10**-6 //Time period (in seconds)
+
+//Calculation
+
+f = 1/T //Frequency (in Hertz)
+f = f * 10**-6 //Frequency (in Mega-Hertz)
+f5 = 5 * f //%th - harmonic (in Mega-Hertz)
+
+//Result
+
+printf("\n Frequency of 5th harmonic is %0.3f MHz.",f5)