summaryrefslogtreecommitdiff
path: root/3542/CH6/EX6.8
diff options
context:
space:
mode:
Diffstat (limited to '3542/CH6/EX6.8')
-rw-r--r--3542/CH6/EX6.8/6_8.jpgbin0 -> 59419 bytes
-rw-r--r--3542/CH6/EX6.8/Ex6_8.sce21
2 files changed, 21 insertions, 0 deletions
diff --git a/3542/CH6/EX6.8/6_8.jpg b/3542/CH6/EX6.8/6_8.jpg
new file mode 100644
index 000000000..22e155344
--- /dev/null
+++ b/3542/CH6/EX6.8/6_8.jpg
Binary files differ
diff --git a/3542/CH6/EX6.8/Ex6_8.sce b/3542/CH6/EX6.8/Ex6_8.sce
new file mode 100644
index 000000000..8f7b93ac7
--- /dev/null
+++ b/3542/CH6/EX6.8/Ex6_8.sce
@@ -0,0 +1,21 @@
+// Example no 6.8
+// To find the first zero-crossing RF bandwidth of rectangular pulse and compare to raised cosine filter pulse
+// Page no. 291
+
+clc;
+clear all;
+
+// Given data
+RectTs=41.06*10^-6; // Symbol period of rectangular pulse
+cosineTs=41.06*10^-6; // Symbol period of cosine filter pulse
+alpha=0.35; // Rolloff factor of cosine filter pulse
+
+// To find the first zero-crossing RF bandwidth of rectangular pulse
+B1=2/RectTs; // The first zero-crossing RF bandwidth of rectangular pulse
+
+// The first zero-crossing RF bandwidth of cosine filter pulse
+B2=(1/cosineTs)*(1+alpha); // The first zero-crossing RF bandwidth of cosine filter pulse
+
+// Displaying the result in command window
+printf('\n The first zero-crossing RF bandwidth of rectangular pulse = %0.2f kHz',B1*10^-3);
+printf('\n The first zero-crossing RF bandwidth of cosine filter pulse = %0.2f kHz',B2*10^-3);