<< Chapter < Page | Chapter >> Page > |
In the constellation mapping process, length B segments of the bitstreams are assigned a single complex value in a constellation . This is similar to quadrature ampliture modulation (QAM), because the IFFT of these complex points maps to various sinusoids with amplitudes proportional to the real part and phase shifts proportional to the complex part. We mostly used 2-bit (4 point) and 4-bit (16 point) constellations in our system, but we also coded a function that generates a mapping with an arbitrary number of points. In comparison, constellations used in actual DMT systems can have as many as 240 points. Important characteristics of these constellations include the area occupied by the points and the spacing between points. The power neccessary to transmit the actual signal is proportional to the area, so it is key not to let the points be too far apart. However, the channel introduces noise which results in the constellation points being recieved with error. If the points are too close together, it is impossible to correctly match the received points with the correct value in the constellation. We implemented constellation mapping with a home-cooked parser: it would examine every 2 or 4 bits (depending on the mapping), look up the current segment in a table and assign the next element in a new vector the corresponding constellation point.
Bit Sequence | Value | Bit Sequence | Value |
0000 | .354+.354j | 1000 | 1 |
0001 | .707 | 1001 | .707+.707j |
0010 | .707j | 1010 | j |
0011 | -.354+.354j | 1011 | -.707+.707j |
0100 | -.707j | 1100 | -1 |
0101 | .354-.354j | 1101 | -.707-.707j |
0110 | -.354-.354j | 1110 | -j |
0111 | -.707 | 1111 | .707-.707j |
Our related MATLAB functions:
constmap.m
,
deconstmap.m
Home | Previous: Implementation | Next: Mirror/IFFT, De-Mirror/FFT
Notification Switch
Would you like to follow the 'Ece 301 projects fall 2003' conversation and receive update notifications?