summaryrefslogtreecommitdiff
path: root/3446/CH2/EX6.2/EX6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3446/CH2/EX6.2/EX6_2.sce')
-rw-r--r--3446/CH2/EX6.2/EX6_2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3446/CH2/EX6.2/EX6_2.sce b/3446/CH2/EX6.2/EX6_2.sce
new file mode 100644
index 000000000..f82ff5ffd
--- /dev/null
+++ b/3446/CH2/EX6.2/EX6_2.sce
@@ -0,0 +1,13 @@
+// Exa 6.2
+// To calculate spectral efficiency of FDMA.
+
+clc;
+clear all;
+
+TCH=395; // Traffic Channels
+SysBW=12.5; //in MHz
+CHspace=30; // in kHz
+
+//solution
+Eff=TCH*CHspace/(SysBW*1000);
+printf('Multiple access spectral efficiency of FDMA System is %.3f\n ',Eff);