Plotting AWGN in baseband binary transmission
    8 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
How do I plot this?
S0(t)= sqrt(2*E/T) sin(pi*t/T) 
S1(t)= sqrt(2*E/T) sin(2*pi*t/T)
where T is the period and E is normalized.
Can someone teach me how to plot this because I dont know how to plot E and T.
0 commentaires
Réponses (2)
  UJJWAL
      
 le 30 Sep 2011
        Hi Phoon,
Your question is not clear. In the equation you have mentioned there is no mention of AWGN. It is not clear what you want to plot. The expression you have mentioned , it seems that it is of a signal of Symbol period 'T' for binary trnasmission. Multiplication by Sqrt[2*E/T) is done so as to ensure that the energy of the signal is 1. This is also a kind of normalization. For transmitting 1 and 0 usually the amplitudes are inverted. So Amplitude will be like Sqrt[2*E/T) for 1 and negetive of that for 0. So I dont know what you want to plot. I am below mentioning a plot for the BPSK transmission of a sequence of bits
x = [0,1,0,0,0,1,1,1]; % Bits to be transmitted
T= 1 ; % Symbol Period
len = length(0:0.001:1);
p=1;
for i = 1:length(x)
    s(1,p:p+len-1) = (-1)^(1+x(i)) * sqrt(2*0.1/1) * sin(2*pi*(0:0.001:1)/T);
    p=p+len;
end
t= 0:0.001:0.001*(p-2);
plot(t,s);
xlabel('Time\rightarrow','fontsize',18);
ylabel('s(t)\rightarrow','fontsize',18);
title('Baseband Signal','fontsize',20);
grid on;
For details clarify your question and reply back. Hope this helps
HAPPY TO HELP
UJJWAL
0 commentaires
  Phoon
 le 1 Oct 2011
        1 commentaire
  Walter Roberson
      
      
 le 2 Oct 2011
				You don't even have a pi in the above code, let alone a sin() or sqrt(), and you do not have any comments such as "I want to do S0 here!" such that we could get an idea of how you want S0 and S1 to relate to the rest of your program.
At present it does not appear that this program has anything to do with the question you asked ?
Voir également
Catégories
				En savoir plus sur PHY Components dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


