summaryrefslogtreecommitdiff
path: root/3542/CH9/EX9.2/Ex9_2.sce
blob: 39c7ad686008e7a8d761e221c507cd236d9e6409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Example no 9.2
// To find number of channels available
// Page no. 452

clc;
clear all;

// Given data
Bt=12.5*10^6;                                            // Total spectrum allocation in Hz
Bguard=10*10^3;                                          // Guard band allocated in Hz
Bc=30*10^3;                                              // Channel bandwidth in Hz

// The number of channels available
N=(Bt-2*Bguard)/Bc;                                      // The number of channels available

// Displaying the result in command window
printf('\n The number of channels available in FDMA system = %0.0f',N);