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.

SC-FDE continuous time transmission in MATLAB

Status
Not open for further replies.

David83

Advanced Member level 1
Joined
Jan 21, 2011
Messages
410
Helped
45
Reputation
92
Reaction score
45
Trophy points
1,308
Activity points
3,639
Hello all,

I would like to implement single carrier-frequency domain equalization (SC-FDE) in continuous time in MATLAB.

In particular, I have the following:

1- The channel is given by:

\[h(\tau)=\sum_{q=1}^Qh_q\delta(\tau-\tau_q)\]

2- The transmitted signal is given by:

\[s(t)=\Re\left\{e^{j2 f_c t\pi}\sum_{k=0}^{K-1}s_k\,g(t-kT_s)\right\}\]

where fc is the carrier frequency, sk are the transmitted symbols, and g(t) is a rectangular pulse which is one over the interval [0,Ts) where Ts is the sample time.

3- The baseband received signal is given by:

\[v(t)=\sum_{k=0}^{K-1}s_k\sum_{q=1}^Q\alpha_q g(t-kT_s-\tau_q)+w(t)\]

where w(t) is additive white Gaussian noise (AWGN) process of zero-mean and power spectral density (PSD) N0, and

\[\alpha_q=h_q\exp(j 2 f_c \tau_q \pi)\]

If we assume that the transmitted symbols are binary phase shift keying (BPSK) with the following parameters:

Code:
N=128; %Number of symbols
fc=12*10^3; %Carrier frequency
B=1000; % Bandwidth
Ts=1/(2*B);%Nyquist Sample Time
nsamp=10^3;%Oversampling factor
Ta=Ts/nsamp;%Sample time after oversampling
K=N*nsamp;%Number of symbols in sample time Ta
tau=[0 5 7 20].*10^-3;%Pathe delays
h=[1 0.8 0.7 0.5];%Fixed channel coefficients.

How can I obtain v(t) in MATLAB?

I appreciate your help.

Thanks
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top