M=1000;
n_bins=round(M/10);
Nt=[2:2:8];
SNR=[10];
figure(1);
title('发送端未知CSI情况下MIMO系统容量CCDF','FontSize',14)
xlabel('容量(bit/s/Hz)','FontSize',12);
ylabel('Pr(容量>=横坐标)','FontSize',12);
hold on;
text(1.8,0.8,'1×1','FontSize',12);
text(3,0.9,'2×2','FontSize',12);
text(6,0.8,'2×4','FontSize',12);
text(8,0.7,'2×6','FontSize',12);
text(10.4,0.2,'2×8','FontSize',12);
text(13,0.1,'4×4','FontSize',12);
text(19,0.1,'6×6','FontSize',12);
text(24,0.1,'8×8','FontSize',12);
%画1发1收时SISO系统容量
for n=1:1
for m=1:M
H=(randn(1,1)+1i*randn(1,1))/sqrt(2);
rho=10^(SNR/10);
CU(m,n)=log2(real(det(eye(1)+rho*H*H')));
end
[cdf,c]=hist(CU(:,n),n_bins);
plot(c,1-(cumsum(cdf))/M)
end
%画收发天线个数为2×2,2×4,2×8时的容量
for n=2:length(Nt)
N=Nt(n);
for m=1:M
H=(randn(2,N)+1i*randn(2,N))/sqrt(2);
rho=10^(SNR/10);
CU(m,n)=log2(real(det(eye(2)+rho*H*H'/2)));
end
[cdf,c]=hist(CU(:,n),n_bins);
plot(c,1-(cumsum(cdf))/M)
end
%
for n=1:length(Nt)
N=Nt(n);
for m=1:M
H=(randn(N,N)+1i*randn(N,N))/sqrt(2);
rho=10^(SNR/10);
CU(m,n)=log2(real(det(eye(N)+rho*H*H'/N)));
end
[cdf,c]=hist(CU(:,n),n_bins);
plot(c,1-(cumsum(cdf))/M)
end
grid on;
邓凌佳
- 粉丝: 79
- 资源: 1万+
最新资源
- AWS B2.1-1-209-96(R2007) 主要用于管道的、在焊接或PWHT条件下(M-1/P-1/S-1,1或2组)1/8到1-1/2英寸厚、ER70S-2及E7018碳钢的药皮焊.pdf
- AWS B5.9-2006 焊接监理的资格认定.pdf
- AWS D1.6D1.6M-2007 不锈钢焊接规范.pdf
- AWS F1.1-1992 对焊接和相关工艺产生中的悬浮空气粒子的抽样方法.PDF
- AWS D14.5-1997 压力机和压力元件焊接规范.pdf
- AWS F4.1-1994 容器和管道焊接和切割准备的推荐安全规程.pdf
- AWS F1.2-1992 焊接和连接过程中测量总烟雾发散和烟雾产生速率的实验室方法.PDF
- AWS QC14-2009 焊接检测者的认证标准.pdf
- BHW35钢热丝TIG堆焊接头组织及性能研究 - .pdf
- BHW35钢焊接接头高温冲击试验分析.pdf
- BSI PD6493 焊接缺陷验收标准若干方法指南(1980年).pdf
- CBT 1164-1986 铝及铝合金焊接试验方法及技术要求.pdf
- CATIA柔性子装配模拟车身焊接夹具运动的设计方法.pdf
- CBT 1216-1992 TA5钛合金焊接技术条件.pdf
- CBT 1216-1992 TA5 钛合金焊接技术条件.pdf
- mlir从onnx和pytorch分别转过来
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈