tu2_12.m

来自「多输入多输出系统不同收发天线对系统性能的影响」· M 代码 · 共 11 行

M
11
字号
SNR=0:1:10;%SNR is signal-to-noise ratio in dBs
output1=capacity(2,1,0.8,1,0.5,'erg',SNR);
output2=capacity(2,0,0,0,0.5,'erg',SNR);
plot(SNR,output1,'b-^',SNR,output2,'k-^');
%plot routines follow. These will change depending upon the type of plot.
%The following routines are based on the given example above
xlabel('SNR');
ylabel('Capacity (Bits/sec)');
title('Outage Capacity Variation with SNR for Corr = 0.8 and corr = 0');
legend('corr','no corr');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?