?? getcorrmatrix.m
字號(hào):
function CorrMatrix_sqrt=getCorrMatrix(rho,AntennaConfig)
CorrMatrix=rho*ones(str2num(AntennaConfig),str2num(AntennaConfig));
for loop=1:str2num(AntennaConfig)
CorrMatrix(loop,loop)=1;
end
[v,d]=eig(CorrMatrix); % !Note: although svd can get the same result, eig is right in definition.
CorrMatrix_sqrt=v*sqrt(d)*v';
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -