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.
Hi champion,
Could you help to explain how the IF frequency f_IF deterimind by the received signal frequency f_R and LO frequency f_LO?
Is f_IF = f_R - f_LO, or f_IF = f_LO - f_R?
If the slope of the chirp is positive, f_R < f_LO, if the slope of the chirp is negative, f_R > f_LO. How can DFE map IF of both cases into positive frequency domain?
Thanks,
Adam
Hi Adam,
You are correct. If the slope is negative, you need to reverse the spectrum to view it correctly . When reversing the spectrum, use the following matlab equation,
chirp_data = chirp_data([1 end:-1:2]);
Essentially, the 'bin zero' remains where it is, and the remaining bins are reversed about 'bin zero'.
Regards
Anil