diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3542/CH5/EX5.8/Ex5_8.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3542/CH5/EX5.8/Ex5_8.sce')
-rw-r--r-- | 3542/CH5/EX5.8/Ex5_8.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3542/CH5/EX5.8/Ex5_8.sce b/3542/CH5/EX5.8/Ex5_8.sce new file mode 100644 index 000000000..d2779d6ac --- /dev/null +++ b/3542/CH5/EX5.8/Ex5_8.sce @@ -0,0 +1,21 @@ +// Example no 5.8
+// To find the average fade duration
+// Page no. 225
+
+clc;
+clear all;
+
+// Given data
+rho1=0.01; // Threshold level
+rho2=0.1; // Threshold level
+rho3=1; // Threshold level
+fm=200; // Doppler frequency
+
+t1=(exp(rho1^2)-1)/(rho1*fm*sqrt(2*%pi)); // The average fade duration
+t2=(exp(rho2^2)-1)/(rho2*fm*sqrt(2*%pi)); // The average fade duration
+t3=(exp(rho3^2)-1)/(rho3*fm*sqrt(2*%pi)); // The average fade duration
+
+// Displaying the result in command window
+printf('\n The average fade duration (for rho = 0.01) = %0.1f microseconds',t1*10^6);
+printf('\n The average fade duration (for rho = 0.1) = %0.0f microseconds',t2*10^6);
+printf('\n The average fade duration (for rho = 1) = %0.2f microseconds',t3*10^3);
|