summaryrefslogtreecommitdiff
path: root/1061/CH5/EX5.2/Ex5_2.sce
blob: 86ff81a6b0d86dc143b4d124eae751e6d5b6310c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Ex:5.2
clc;
clear;
close;
t=0.1*10^-6;// pulse broadening in sec
d=15;// disance in km
B=1/(2*t);// max bandwidth MHz
ds=t/d;// dispersion in ns/km
bl=B*d;// bandwidth length product
printf("The max bandwidth =%d MHz", B/10^6);
printf("\n The dispersion =%f ns/km", ds*10^9);
printf("\n bandwidth length product =%d MHz km", bl/10^6);