Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

for the question,thanks! 2. There are some systems in which only real and positi

ID: 3891429 • Letter: F

Question

for the question,thanks!

2. There are some systems in which only real and positive values can be transmitted. In the following Matlab example, we show 3 systems. System 1 is the ordinary OFDM system and no special constraint is applied. System 2 follows conjugate symmetry property to ensure real value ifft output. System 3 also follows conjugate symmetry property. In addition, all odd-index values of X3 are set to 0. The output of ifft, x3, are real but can be both positive and negative. The transmitter simply sets the negative part of x3 to be 0 so that x3 p is resulted. It is clear that x3_p is real and positive. However, can the receiver recover X3 from x3_p? How and Why? Complete theoretical derivation/proof and Matlab code.

Explanation / Answer

Hello ,the answer is very easy.

    given:-

           X3=[ 0 3+2*i 0 2-3*i 0 4+4*i 0 3 0 3 0 4-4*i 0 2+3*i 0 3-2*i]

          x3=ifft(X3)

      x3_p=(x3>0).* x3

         x3_r=x3_p

proof:-

           now create one new varialbe as X3_1 and X3_2.

         X3_1 = (x3_r >=0 ).*x3   % % this line will print all the real values including positive and negative.

        X3_2 = fft(X3_1)       %% this line print our original results.as it is.