blob: 55bbdb025d9128cd995d5a2c2f8f40a1e266c88c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Example 8.3.b //duration of time slot
clc;
clear;
close;
wd=8;//bit wide
ts=32;//time slots
nb=ts*wd;//no. of bits in a frame
nf=8*10^3;//no. of frames
tr=nf*nb;//transmission rate
bdr1=1/tr;//bit duration
bdr=bdr1*wd;//
disp(bdr*10^6,"duration of time slot in micro seconds")
|