summaryrefslogtreecommitdiff
path: root/116/CH9/EX9.1/exa9_1.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /116/CH9/EX9.1/exa9_1.sce
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '116/CH9/EX9.1/exa9_1.sce')
-rwxr-xr-x116/CH9/EX9.1/exa9_1.sce43
1 files changed, 21 insertions, 22 deletions
diff --git a/116/CH9/EX9.1/exa9_1.sce b/116/CH9/EX9.1/exa9_1.sce
index b53df56f5..45d170984 100755
--- a/116/CH9/EX9.1/exa9_1.sce
+++ b/116/CH9/EX9.1/exa9_1.sce
@@ -1,23 +1,22 @@
-
-//Caption:Progam to determine the probability of maximum interference of a 64 channel CDMA system
-
-//Example 9.1
-
-//Page 447
-
-disp('The probability of 63 destructive interferers is merely the probability of occurence of 63 equally likely binary events,')
-
-Pmax=(0.5)^63//maximum probability
-
-disp('The value of a desired receive signal is the autocorrelation of a codeword with itself and can therefore be represented as a value of 64. ')
-
-disp('The mean and varience of a sum of 63 such variable are 0 and 63, respectively. The signal-to-interference ratio is now determined as,')
-
-a=[(64^2)/63]
-
-SIR=10*log10(a)
-
-//Result
-
-//Signal to interference ratio = 18.1 dB
+
+
+//Example 9.1
+
+//Page 447
+
+disp('The probability of 63 destructive interferers is merely the probability of occurence of 63 equally likely binary events,')
+
+Pmax=(0.5)^63//maximum probability
+
+disp('The value of a desired receive signal is the autocorrelation of a codeword with itself and can therefore be represented as a value of 64. ')
+
+disp('The mean and varience of a sum of 63 such variable are 0 and 63, respectively. The signal-to-interference ratio is now determined as,')
+
+a=[(64^2)/63]
+
+SIR=10*log10(a)
+
+//Result
+
+//Signal to interference ratio = 18.1 dB
\ No newline at end of file