Explains what happens in the channel for our DMT project.
Channel characteristics
Frequency response
As mentioned in our introduction, DMT is used to send data both wirelessly and through copper phone lines. In both of these mediums, high frequency electro-magnetic waves are quickly attenuated while low frequency waves retain much of their power, even over long distances. On this basis, we model the frequency response of our channel as a low-pass filter. To account for irregularities in the channel (and to make sure the frequency reponse is invertible), we make it non-ideal low-pass; essentially, the impulse response is an
M -point smoother with random amplitude variations. This portion of the channel was simply implemented by using MATLAB's built-in convolution function with a constructed impulse response.
Additive noise
In addition to low-pass filtering the input signal, the channel also incorporates additive white Gaussian noise (
AWGN ), which models random, natural fluctuations. AWGN is zero-mean and is called"white"because it has equal energy at all frequencies (like white light). We implemented this aspect of the channel by adding a"randn"vector to the signal after low-pass filtering.
The channel for a DMT system can also have other types of noise. These include impulse noise (spikes in the time domain signal), occupied frequencies (spikes in the frequency domain) and crosstalk (which we did not consider). We incorporated impulse noise by setting a fixed number of elements at individual random locations in the signal to twice the amplitude of the signal mean. We did not include frequency spikes or crosstalk; these would be good things to add in an extended study of DMT.