📄 channelcorrelationcoefficient.m
字号:
%% MIMO_ChannelCorrelationCoefficien
clear;
clc;
results=zeros(5,501);
temp=15/180*pi;
results(1,:)=quadv(@CorrCoe,-temp,temp)/(30/180*pi);
temp=10/180*pi;
results(2,:)=quadv(@CorrCoe,-temp,temp)/(20/180*pi);
temp=5/180*pi;
results(3,:)=quadv(@CorrCoe,-temp,temp)/(10/180*pi);
temp=2.5/180*pi;
results(4,:)=quadv(@CorrCoe,-temp,temp)/(5/180*pi);
temp=0.5/180*pi;
results(5,:)=quadv(@CorrCoe,-temp,temp)/(1/180*pi);
d2lamda=0:0.1:50;
newresults=real(results).';
plot (d2lamda,newresults, 'DisplayName','newresults', 'YDataSource', 'newresults'); figure(gcf)
axis([0 50 -0.4 1])
grid
%C = log2(eye(4)+100/4*Re_CorrMatrix'*H*Tr_CorrMatrix*H');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -