<< Chapter < Page | Chapter >> Page > |
In equalization, the received spectral coefficient blocks (i.e. after cyclic prefix removal and FFT) are adjusted to compensate for the frequency response of the channel (nothing can be done here about the additive noise). Due to the cyclic prefix , each block has essentially undergone cyclic convolution with the channel's impulse response. In the frequency domain, this is the same as if the spectral coefficients were pointwise multiplied by the frequency response of the channel. If the freq. response has no zeros and is known by the receiver, it is possible to perfectly remove the effect of the channel's filter. Since the channel pointwise multiplied the blocks by its freq. response, all that needs to be done is multiply the blocks pointwise by the 1 over the freq. response. Because we implemented the channel's impulse response as non-ideal low-pass, it's freq. response has no zeros and equalization is rather trivial.
After equalization, the effect of the channel's low-pass filter is removed, but the additive noise is still there. It manifests itself as causing the received constellation points to deviate from their location in the original constellation. To enable the bitstream to be recovered, a nearest-neighbor approximation is performed on each point. As long as the noise amplitude is small or the constellation points are far apart, it is unlikely that any single point will deviate enough from it's original location such that it has a new nearest-neighbor. With high noise power, however, the points are scattered all over the constellation; the nearest neighbor in this case is unlikely to be the original point. In our system, we implemented this approximation with a parser and look up table; we would examine each complex value in the blocks and compare it to every point in the constellation, selecting the closest point as the approximation.
Our related MATLAB functions:
filterchannel.m
,
approximate.m
Home | Previous: Implementation | Next: Results and Conclusions
Notification Switch
Would you like to follow the 'Ece 301 projects fall 2003' conversation and receive update notifications?