资源简介
设信道响应已知。采用线性模型下的线性MMSE估计方法,根据观测信号yk估计发送信号xk。
代码片段和文件信息
clc;
clear all;
close all;
%发送端产生QPSK信号
len = 2000;
xI = randint(1len);
xQ = randint(1len);
for i = 1:len
if(xI(i) == 0)
xI(i) = -1;
end
if(xQ(i) == 0)
xQ(i) = -1;
end
end
x = (xI + 1i*xQ)/sqrt(2);
scatterplot(x);
title(‘发送端QPSK信号星座图‘);
hA = [0.04 -0.05 0.07 -0.21 -0.5 0.72 0.36 0 0.21 0.03 0.07];
hB = [0.407 0.815 0.407];
hC = [0.227 0.46 0.6888 0.46 0.227];
%信道响应的频域图
figure;
subplot(311);plot(10*log10(abs(fft(hA1024))));ylabel(‘dB‘);title(‘A信道的频谱‘);axis([01023-4010]);
subplot(312);plot(10*log10(abs(fft(hB1024))));ylabel(‘dB‘);title(‘B信道的频谱‘);axis([01023-4010]);
subplot(313);plot(10*log10(abs(fft(hC1024))));ylabel(‘dB‘);title(‘C信道的频谱‘);axis([01023-4010]);
%QPSK信号过信道
h = hA;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1984 2014-12-14 20:13 LMMSE.m
评论
共有 条评论