程序代写 ECE5884 Wireless Communications Quiz 8 Due: 19th September 2022

ECE5884 Wireless Communications Quiz 8 Due: 19th September 2022
1. A channel 𝐡 is defined by its impulse response with h[0] = 0.5, h[1] = 𝑗/2, and h[2] = 0.4𝑒𝑥𝑝(𝑗𝜋/5). Use Matlab to calculate the Least Squares Equalizer of length 𝐿𝑓 = 5.
The LS Equalizer is given by
squared error corresponding to a delay n_d is given by

Copyright By PowCoder代写 加微信 powcoder

a. Write down the channel convolution matrix 𝐇 formed from the vector channel defined by 𝐡.
b. Generate a plot of the squared error as a function of delay parameter.
c. What is the delay corresponding to the minimum squared error min 𝐽[𝑛𝑑].
d. Write down the 𝑓 using the delay value calculated in c. 𝐿𝑆,𝑛𝑑
2. Based on the Week 8 Lecture (Slides 54 and 57) discussion on OFDM, derive the spectrum of the OFDM symbol.
3. Use the Matlab code template given below for the OFDM transmitter to understand the effect of modulating data onto individual sub carriers.
clear all;
close all;
N=16; %Total number of sub carriers
k = input(‘Input the index of the sub carrier to modulate’);
%Data Mapping
mapping = (1/sqrt(2))* [1+j 1-j -1+j -1-j]; %Constellation Xk = mapping(randi([1,4]));
x = zeros(1,N);
for m = 1:N
x(m)=(1/sqrt(N))*(Xk*exp(j*2*pi*(k-1)*(m-1)/N)); %IDFT equation end
stem(real(x))
stem(imag(x))
a. Generateplotsof𝑘 = 0,(𝑁/2-1)and𝑁−1.
b. Based on your observation which sub carrier is the fastest (rapid phase
4. Consider an OFDM system with N = 256 subcarriers in 5MHz of bandwidth, with a carrier of fc = 2GHz and a length L = 16 cyclic prefix. The 4 subcarriers near N/2 are nulled. A digital modulation with M= 64 is used in the modulation of sub-carriers.
a. What is the subcarrier bandwidth?
b. What is the length of the guard interval?
c. Calculate the Number of data bearing sub carriers and number of QAM
samples that are carrier by each OFDM symbol.
d. Calculate the overall OFDM symbol duration including the cyclic prefix.
e. Calculate the bit rate from the number of information bearing sub carriers and
sample period.

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com