blob: f7b4827e9e387a14bc273ec31cc20d5b0578ee3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Example 9.7
// Calculation of the (a) the total data rate and (b) the spectral efficiency.
// Page no 413
clc;
clear;
close;
//Given data
M=16;
np=2; // No of polarization
nc=24; // No of channels
bs=28*10^9; // Symbol rate per polarization
// (a) The total data rate
B=bs*log2(M);
T=B*np*nc;
// (b) The spectral efficiency
N=bs*nc;
s=T/N;
//Displaying results in the command window
printf("\n The total data rate = %0.3f Tb/s ",T*10^-12);
printf("\n The spectral efficiency = %0.1f b/s/Hz ",s);
|