Plotting Data rates vs SNR in 3 node cooperative communication

Status
Not open for further replies.

eng_basem

Newbie level 6
Joined
Jun 17, 2009
Messages
14
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Location
Egypt
Activity points
1,351
I draw the BER vs SNR and i can't draw the data rate vs the SNR as i can't get a direct relation between the data rate ans the SNR in the equation?

anyhelp?
 

There is no direct relation between data rate and SNR. If you mean a channel capacity (maximum throughput rate), google the Shannon-Hartley theorem.
 

i want to plot equation 10 in this paper
and as u see it contains only the channel coefficients and the two sources powers

- - - Updated - - -

i want to plot equation 10 in this paper
and as u see it contains only the channel coefficients and the two sources powers

- - - Updated - - -

this is the paper
 

Attachments

  • Optimal Transmission Power Allocation for Two-Way using ANC 2.pdf
    208.9 KB · Views: 72

i can't get a direct relation between the data rate ans the SNR in the equation

Why? That is equation 9 in your reference. Eq. 10 is only a substitution.
If you want to plot R vs SNR using MATLAB do the following:
SNR1=0:30; - this is for example
SNR2=0:30;
SNR1r=repmat(SNR1,length(SNR1),1); create a matrix from vector by repetition
SNR2r=repmat(SNR2',1,length(SNR2)); note that snr2 is transposed
Rate=0.5*log((1+SNR1r).*(1+SNR2r));
surf(Rate);

Is it a reply?
 
Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…