blob: c52f8052bc83e2a8f6e0572a944f1e02e007336e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 2.7.1 page 2.37
clc;
clear;
t= 0.1*10^-6;
L=15;
del= t/L*10^9; //convertin to nano secs...
printf("The Pulse Dispersion is %.2f ns",del);
B_opt= 1/(2*t)/10^6; //convertin to nano secs...
printf("\n\n The maximum possible Bandwidth is %d MHz",B_opt);
BLP = B_opt*L;
printf("\n\nThe BandwidthLength product is %d MHz.Km",BLP);
|