
13 f i g u r e
14 hold a l l
15 g r i d on
16 g r i d minor
17
18 erro r _the o = z e r o s ( s i z e ( snr_range , 2 ) , 1) ;
19 error_sim = z e r o s ( s i z e ( snr_range , 2) , 1) ;
20 f o r i = 1 : s i z e ( snr_range , 2)
21 rece ived_mes sage = z e r o s ( num_transmissions , 1) ;
22
23 %c a l c u l a t e v a r i a n c e from SNR
24 N_0 = 1/ snr_range ( i ) ;%1;% n o i s e va r i a n c e
25 sigma_sq = N_0/2 ;
26
27 % ge n er a t e r andom s i g n a l o f 1 ’ s and 0 ’ s (P( 0 )=P( 1 )
28 b i t s = ra n d i ( [ 0 1 ] , num_transmissions , 1) ;
29
30 % f o r BPSK, the b i t s sh ould be -1 and +1, so 0 -> -1
31 X = b i t s ;
32 X(X == 0 ) = - 1 ;
33
34 % ge n er a t e random g a u s s i a n n o i s e
35 Z = s q r t ( sigma_sq ) .* randn ( s i z e (X, 1) , 1) ;
36
37 % add n o i s e to s i g n a l
38 Y = X + Z ;
39
40 % check s i g n a l a g a i n s t t h r e s h o l d
41 ind = f i n d (Y> thresh_BPSK ) ;
42 rece ived_mes sage ( ind ) = 1 ;
43
44 % g e t s i m u l a t i o n b i t e r r o r r a t e (BER)
45 e r r o r s = re cei ved_m essag e ( r eceived_ messa ge ~= b i t s ) ;
46 error_sim ( i ) = s i z e ( e r r o r s , 1 ) / s i z e (X, 1 ) ;
47
48 % c a l c u l a t e t h e o r e t i c a l BER
49 err o r_th e o ( i ) = qfunc ( s q r t (2* snr_range ( i ) ) ) ;
50 end
51
52 p l o t ( snr_range , lo g 1 0 ( error_sim ) , ’ ko ’ )
53 p l o t ( snr_range , lo g 1 0 ( e rror_ t heo ) , ’ k - - ’ )
54 t i t l e ( ’ De t e c t o r Performance with Varying SNR (BPSK) ’ )
55 x l a b e l ( ’SNR [ dB ] ’ )
56 y l a b e l ( ’BER ’ )
57 l e g e nd ( ’ Simulated BER ’ , ’ Th e o r e t i c a l BER ’ )
EE526 Project 2 Page 2