diff options
Diffstat (limited to '1619/CH2/EX2.5.1/Example2_5_1.sce')
-rwxr-xr-x | 1619/CH2/EX2.5.1/Example2_5_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1619/CH2/EX2.5.1/Example2_5_1.sce b/1619/CH2/EX2.5.1/Example2_5_1.sce new file mode 100755 index 000000000..292060be3 --- /dev/null +++ b/1619/CH2/EX2.5.1/Example2_5_1.sce @@ -0,0 +1,13 @@ +//Example 2.5.1 page 2.25
+
+clc;
+clear;
+
+lamda = 850 *10^-9;
+sigma= 45*10^-9;
+L= 1;
+M= 0.025/(3*10^5*lamda);
+sigma_m= sigma*L*M;
+sigma_m= sigma_m*10^9; // formatting in ns/km....
+printf("The Pulse spreading is %.2f ns/Km",sigma_m);
+printf("\n\nNOTE*** - The answer in text book is wrongly calculated..");
|