• 大小: 1KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-02
  • 语言: Matlab
  • 标签: SNR  zero  forcing  

资源简介

最大比合并功能实现,简单代码,容易看懂,MATLAB源代码

资源截图

代码片段和文件信息

clear
C1N0=10;

C1C2=linspace(-2020500);
 for i=1:length(C1C2) 
     C2N0=C1N0/(10^(C1C2(1i)*0.1));
     if C1N0>C2N0
        Cmax=C1N0;
    else
        Cmax=C2N0;
    end
   EGC(1i)=0.5*C1N0+0.5*C2N0+(sqrt(C1N0)*sqrt(C2N0));
   EGCdB(1i)=10*log10(EGC(1i)/Cmax);
   MGC(1i)=C1N0+C2N0;
   MGCdB(1i)=10*log10(MGC(1i)/Cmax);
   SDdB(1i)=10*log10(1+0.5);
   MGC_EGC(1i)=MGC(1i)/EGC(1i);
   MGC_EGCdB(1i)=10*log10(MGC_EGC(1i));
end 

figure(1)
plot(C1C2EGCdB);
title(‘Plot of Improvement of all three techniques. (B-Equal Gain R-Maximal Ratio M-Selection Diversity)‘)
YLABEL(‘Improvement(dB)‘);
XLABEL(‘C1/C2(dB)‘);
grid on;
hold o

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1345  2008-09-24 10:55  comparison of  3 combining techniques_Selection Diversity Equal Gain and Maximal Ratio\diversity.m

     目录          0  2008-09-24 10:55  comparison of  3 combining techniques_Selection Diversity Equal Gain and Maximal Ratio

----------- ---------  ---------- -----  ----

                 1345                    2


评论

共有 条评论