This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWR1642: Bin2Mat Code question in Application Note "xWR1xxx ADC Raw Data Capture" based on AWR1642 complex mode using TSW1400

Part Number: AWR1642

Now I am working with AWR1642 and TSW1400EVM and MMDEVpack.

I have read the application note "xWR1xxx ADC Raw Data Capture.pdf" and analyzed matlab code. However, I have a problem about the code for AWR1642.

I use complex 1X mode. According to the application note, the bin format is shown,

In the code:

LVDS(1,:) = adcData(1,:) + sqrt(-1)*adcData(2,:); 
    if numRX > 1
        LVDS(2,:) = adcData(3,:) + sqrt(-1)*adcData(4,:); 
  temp_LVDS_data_1 =  LVDS
LVDS = reshape([LVDS(1,:); LVDS(2,:)], size(LVDS(1,:),1), []);%%% end

For example, the value of temp_LVDS_data_1 is (only for one chirp)

Each value in  temp_LVDS_data_1 is complex.

Then if we run this line:

 LVDS = reshape([LVDS(1,:); LVDS(2,:)], size(LVDS(1,:),1), [])
LVDS can be described as shown: