diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1619/CH2/EX2.5.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1619/CH2/EX2.5.2')
-rwxr-xr-x | 1619/CH2/EX2.5.2/Example2_5_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1619/CH2/EX2.5.2/Example2_5_2.sce b/1619/CH2/EX2.5.2/Example2_5_2.sce new file mode 100755 index 000000000..2f87304e9 --- /dev/null +++ b/1619/CH2/EX2.5.2/Example2_5_2.sce @@ -0,0 +1,13 @@ +//Example 2.5.2 pagw 2.26
+
+clc;
+clear;
+lamda= 2*10^-9;
+sigma = 75;
+D_mat= 0.03/(3*10^5*2);
+sigma_m= 2*1*D_mat;
+sigma_m=sigma_m*10^9; //Fornamtting in ns/Km
+printf("The Pulse spreading is %d ns/Km",sigma_m);
+D_mat_led= 0.025/(3*10^5*1550);
+sigma_m_led = 75*1*D_mat_led*10^9; //in ns/Km
+printf("\n\nThe Pulse spreading foe LED is %.2f ns/Km",sigma_m_led);
|