summaryrefslogtreecommitdiff
path: root/1184/CH7/EX7.1/Ex7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1184/CH7/EX7.1/Ex7_1.sce')
-rwxr-xr-x1184/CH7/EX7.1/Ex7_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1184/CH7/EX7.1/Ex7_1.sce b/1184/CH7/EX7.1/Ex7_1.sce
new file mode 100755
index 000000000..fdc9c846e
--- /dev/null
+++ b/1184/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,14 @@
+//Example 7-1, Page No - 210
+
+clear
+clc
+
+t = 71.4*10^-6
+
+f = 1/t
+fourth_harmonic = f*4
+min_sampling = 2*fourth_harmonic
+
+printf('The frequency of the signal is %.1f Khz',f/10^3)
+printf('\n The fourth harmonic is %.1f Khz ',fourth_harmonic/10^3)
+printf('\n Minimum sampling rate is %.1f khz',min_sampling/10^3)