summaryrefslogtreecommitdiff
path: root/3542/CH2/EX2.1
diff options
context:
space:
mode:
Diffstat (limited to '3542/CH2/EX2.1')
-rw-r--r--3542/CH2/EX2.1/B_1.jpgbin0 -> 53970 bytes
-rw-r--r--3542/CH2/EX2.1/ExB_1.sce16
2 files changed, 16 insertions, 0 deletions
diff --git a/3542/CH2/EX2.1/B_1.jpg b/3542/CH2/EX2.1/B_1.jpg
new file mode 100644
index 000000000..77b16a990
--- /dev/null
+++ b/3542/CH2/EX2.1/B_1.jpg
Binary files differ
diff --git a/3542/CH2/EX2.1/ExB_1.sce b/3542/CH2/EX2.1/ExB_1.sce
new file mode 100644
index 000000000..40ca0f227
--- /dev/null
+++ b/3542/CH2/EX2.1/ExB_1.sce
@@ -0,0 +1,16 @@
+// Example no B.1
+// To determine SNR at the detector output stage
+// Page no. 613
+
+clc;
+clear all;
+
+// Given data
+SNRin=20; // SNR at the receiver antenna input terminal in dB
+F=6; // Noise figure in dB
+
+// SNR at the detector output stage
+SNRout=SNRin-F; // SNR at the detector output stage in dB
+
+// Displaying the result in command window
+printf('\n SNR at the detector output stage = %0.0f dB',SNRout);