实现信道估计算法的MATLAB仿真.doc

上传人:pu****.1 文档编号:564917495 上传时间:2023-10-13 格式:DOC 页数:5 大小:30KB
返回 下载 相关 举报
实现信道估计算法的MATLAB仿真.doc_第1页
第1页 / 共5页
实现信道估计算法的MATLAB仿真.doc_第2页
第2页 / 共5页
实现信道估计算法的MATLAB仿真.doc_第3页
第3页 / 共5页
实现信道估计算法的MATLAB仿真.doc_第4页
第4页 / 共5页
实现信道估计算法的MATLAB仿真.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

《实现信道估计算法的MATLAB仿真.doc》由会员分享,可在线阅读,更多相关《实现信道估计算法的MATLAB仿真.doc(5页珍藏版)》请在金锄头文库上搜索。

1、实现信道估计算法的matlab仿真clear all;%close all;i=sqrt(-1);Rayleigh=1;AWGN=0; % for AWGN channel MMSE=0; % estimation techniqueNsc=64; % Number of subcarriersNg=16; % Cyclic prefix lengthSNR_dB=0 5 10 15 20 25 30 35 40;% Signal to noise ratioMt=2; % Number of Tx antennasMr=2; % Number of Rx antennaspilots=1:N

2、sc/Ng:Nsc; % pilot subcarriers DS=5; % Delay spread of channeliteration_max=200;% Channel impulse response %if (Rayleigh) N=50; fm=100; B=20e3; fd=(rand(1,N)-0.5)*2*fm; theta=randn(1,N)*2*pi; c=randn(1,N); c=c/sum(c.2); t=0:fm/B:10000*fm/B; Tc=zeros(size(t); Ts=zeros(size(t); for k=1:N Tc=c(k)*cos(2

3、*pi*fd(k)*t+theta(k)+Tc; Ts=c(k)*sin(2*pi*fd(k)*t+theta(k)+Ts; end r=ones(Mt*Mr,1)*(Tc.2+Ts.2).0.5; index=floor(rand(Mt*Mr,DS)*5000+1);endMEE1=zeros(1,length(SNR_dB);MEE2=zeros(1,length(SNR_dB);for snrl=1:length(SNR_dB) snrl estimation_error1=zeros(Mt*Mr,Nsc); estimation_error2=zeros(Mt*Mr,Nsc); R1=

4、besselj(0,2*pi*fm*(Nsc+Ng)/B); sigma2=10(-SNR_dB(snrl)/10); aa=(1-R12)/(1-R12+sigma2); bb=sigma2*R1/(1-R12+sigma2); for iteration=1:iteration_max %iteration if AWGN=1 h=ones(Mt*Mr,1); else phi=rand*2*pi; h=r(index+iteration)*exp(j*phi); %h=rand(Mt*Mr,DS); h=h.*(ones(Mt*Mr,1)*(exp(-0.5).1:)S); h=h./(

5、sqrt(sum(abs(h).2,2)*ones(1,DS); end CL=size(h,2); % channel length data_time=zeros(Mt,Nsc+Ng); data_qam=zeros(Mt,Nsc); data_out=zeros(Mr,Nsc); output=zeros(Mr,Nsc); for tx=1:Mt data_b=0*round(rand(4,Nsc); % data data_qam(tx,:) =j*(2*(mod(data_b(1, :)+data_b(2, :),2)+2*data_b(1, :)-3)+. 2*(mod(data_

6、b(3, :)+data_b(4,:),2)+2*data_b(3,:)-3; for loop=1:Mt data_qam(tx,pilots+loop-1)=(1+j)*(loop=tx); % pilots end data_time_temp=ifft(data_qam(tx,:); data_time(tx,:)=data_time_temp(end-Ng+1:end) data_time_temp; end for rx=1:Mr for tx=1:Mt output_temp=conv(data_time(tx,:),h(rx-1)*Mt+tx,:); output(rx,:)=

7、output_temp(Ng+1:Ng+Nsc)+output(rx,:); end np=(sum(abs(output(rx,:).2)/length(output(rx,:)*sigma2; noise=(randn(size(output(rx,:)+i*randn(size(output(rx,:)*sqrt(np); output(rx,:)=output(rx,:)+noise; data_out(rx,:)=fft(output(rx,:); end% Channel estimation % H_act=zeros(Mt*Mr,Nsc); H_est1=zeros(Mt*Mr

8、,Nsc); H_est2=zeros(Mt*Mr,Nsc); i=1; for tx=1:Mt for rx=1:Mr H_est_temp=data_out(rx,pilots+tx-1)./data_qam(tx,pilots+tx-1); %H_est_temp2=aa*abs(H_est_temp1)+bb*abs(H_est2(rx-1)*Mt+tx,:); h_time=ifft(H_est_temp); h_time=h_time zeros(1,Nsc-length(h_time); H_est1(rx-1)*Mt+tx,:)=fft(h_time); H_est2(rx-1

9、)*Mt+tx,:)=(aa*abs(H_est1(rx-1)*Mt+tx,:)+bb*abs(H_est2(rx-1)*Mt+tx,:). .*H_est1(rx-1)*Mt+tx,:)./abs(H_est1(rx-1)*Mt+tx,:); if (tx1) H_est1(rx-1)*Mt+tx,:)=H_est1(rx-1)*Mt+tx,Nsc-tx+2:Nsc) H_est1(rx-1)*Mt+tx,1:Nsc-tx+1); H_est2(rx-1)*Mt+tx,:)=H_est2(rx-1)*Mt+tx,Nsc-tx+2:Nsc) H_est2(rx-1)*Mt+tx,1:Nsc-t

10、x+1); end H_act(rx-1)*Mt+tx,:)=fft(h(rx-1)*Mt+tx,:) zeros(1,Nsc-CL); error1=(abs(H_act(rx-1)*Mt+tx,:)-H_est1(rx-1)*Mt+tx,:).2); error2=(abs(H_act(rx-1)*Mt+tx,:)-H_est2(rx-1)*Mt+tx,:).2); %error=(abs(H_act(rx-1)*Mt+tx,:)-H_est(rx-1)*Mt+tx,:).2)./(abs(H_act(rx-1)*Mt+tx,:).2); estimation_error1(rx-1)*M

11、t+tx,:)=estimation_error1(rx-1)*Mt+tx,:)+error1; estimation_error2(rx-1)*Mt+tx,:)=estimation_error2(rx-1)*Mt+tx,:)+error2; %subplot(Mt*Mr,3,i),plot(0:Nsc-1,abs(H_act(rx-1)*Mt+tx,:); i=i+1; %subplot(Mt*Mr,3,i),plot(0:Nsc-1,abs(H_est(rx-1)*Mt+tx,:); i=i+1; %subplot(Mt*Mr,3,i),plot(0:Nsc-1,abs(error); i=i+1; end end end estimation_error1=estimation_error1/iteration_max;

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 建筑/环境 > 电气安装工程

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号