Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

retrieving I & Q components from a complex signal

Status
Not open for further replies.

rmreddy

Member level 3
Joined
Feb 20, 2007
Messages
65
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,288
Activity points
1,718
hello everyone,
i have generated a complex signal by mutiplying the real part of a symbol with cosine of carrier frequency and imaginary part by sine of carrier frequency.
com_signal=real(symbol)*cos(2*pi*fc*) + imag(symbol)*sin(2*pi*fc*t)). at the transmitter end

now, the problem is how to retrieve back the I & Q components at the reciever end.
i have done the coding on matlab.

help me guys..
 

First down convert frequency carrier component and then

Ich =real(com_signal); and Qch = imag(com_signal);

symbol = Ich + j*Qch;

Anyway i'm not sure hope someone for more clarity. :D
 

you have to multiply by coherent quadrature
carrier signals and lowpass filter the resulting
2 signals
 

Hi
sin and cos are orthogonal, so if you downconvert your signal with cos(wt) and filter it, real part is extracted. if you downconvert your signal with sin(wt) and filter it, imag part is extracted.
 

hey thanks dude, very good link .. almost all my doubts have been cleared ...
 

hi,
as you have stated, multiplying complexsignal with cos(theta) to retrieve inphase component and by sin(theta) to retrieve Q component ... and then passing through LPF of cut-off frequency - fc, .. this will work well if the noise introduced by the channel is a function of phase or frequency but not a DC noise ...

i have problem while trying to retrieve the signal assuming i have a DC component corrupted by the DC noise ,....
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top