summaryrefslogtreecommitdiff
path: root/3542/CH5/EX5.8/Ex5_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3542/CH5/EX5.8/Ex5_8.sce')
-rw-r--r--3542/CH5/EX5.8/Ex5_8.sce21
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);