blob: 273626ee21add54eaf0d4f23e8ae9d001cd29abd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Exa 9.6
// To calculate bit rate.
clc;
clear all;
Rs=19200; //symbols per second
states=64;
//solution
Bits_symbol=log2(states);
BitRate=Bits_symbol*Rs;
printf('Bit Rate of the modulator is %.1f kbps',BitRate/1000 );
|