MICROWAVE DATA

This section contains T/2-spaced (symbol spacing T) FIR digital microwave radio channels extracted from processing of field measurements of received signals, courteousy of Applied Signal Technology, Sunnyvale, CA. The channel models may be obtained from the SPIB database at Rice University.

Channels 1-5 are precisely those channels described/used in

Moreover, shortened versions of these five channels (obtained by decimating the channel's frequency response) are described/used in Help keep this citation database complete by submitting via e-mail your references for the above lists when you use these microwave channels: johnson@ee.cornell.edu

The Matlab code below was used to generate the following plots.

load chan1
chan=C; clear C;
Lc=length(chan);
chan=chan/max(abs(chan));  %Normalize for unity maximum tap
subplot(211), semilogy(abs(chan))
axis([0 Lc 1e-5 1e0])
title('Magnitude of Impulse Response Coefficients')
subplot(212), 
[H,W]=freqz(chan,1,512,'whole');
plot(abs(H))
axis([0 512 0 3])
title('Frequency Response Magnitude')

Channel Dynamics Plots