summaryrefslogtreecommitdiff
path: root/3446/CH21/EX21.6/Ex21_6.sce
blob: dfa119706ae5feb72879b092c7f07f4eb54a76d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Exa 21.6
// To determine the user data rate for HIPERLAN/2.

clc;
clear all;

R=3/4; //code rate for convolution encoder

//solution
//64-QAM modulation is used
Sc=250; //Carrier symbol rate(ksps) from Exa 21.5
Bits_sym=log2(64); //64-QAM is used
User_R=Bits_sym*Sc*10^3*R*48;
printf('The user data rate is %d Mbps \n',User_R/10^6);