• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-16
  • 语言: Matlab
  • 标签: 信道容量  

资源简介

程序主要是描述了天线的相关性对信道容量的影响,对比无相关和相关时的性能

资源截图

代码片段和文件信息

% Ergodic_Capacity_Correlation.m 信道相关导致信道容量减少
% Capacity reduction due to correlation of MIMO channels (Fig. 9.8)
clear all close all;
SNR_dB=[0:5:20]; SNR_linear=10.^(SNR_dB/10.);
N_iter=1000; N_SNR=length(SNR_dB);
nT=4; nR=4; n=min(nTnR); I = eye(n); sq2=sqrt(0.5); % 4x
R=[1 0.76*exp(0.17j*pi) 0.43*exp(0.35j*pi) 0.25*exp(0.53j*pi);
0.76*exp(-0.17j*pi) 1 0.76*exp(0.17j*pi) 0.43*exp(0.35j*pi);
0.43*exp(-0.35j*pi) 0.76*exp(-0.17j*pi) 1 0.76*exp(0.17j*pi);
0.25*exp(-0.53j*pi) 0.43*exp(-0.35j*pi) 0.76*exp(-0.17j*pi

评论

共有 条评论