资源简介
1、仿真中,MIMO的配置为1个发送天线和两个接收天线;
2、分集合并技术有最大比合并、等增益合并及选择性合并;
3、上述三种合并技术均与SISO(单发单收系统)进行了比较;
4、仿真中对上述三种合并技术及SISO的误比特率进行了对比。
代码片段和文件信息
%%=====================================================================%%
%In a one transmitting antenna and two receiving antenna collocate
%calculate the bits error rates of the maximum ratio combiningequal gain
%combining selective combining and SISO system
%%=====================================================================%%
clear all
clc
close all
%%
%================Initialize variables==================================%%
nRxs=2;
nTxs=1;
InfoBitLength = 50000;%the length of the transimitted bits
N0=1;%the unilateral power spectral density of white noise
Var=N0;%the variance of white noise
sigma=sqrt(Var/2);
iEbN0=1;
Ber_MRC=zeros(171);
Ber_SISO=zeros(171);
Ber_EGC=zeros(171);
Ber_SLC=zeros(171);
%%
for EbN0_dB=-8:8
EbN0=10^(EbN0_dB/10);
Eb
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3324 2013-11-30 19:55 diversitycombing.m
- 上一篇:EViews.8-32位破解文件
- 下一篇:模拟飞秋代码
评论
共有 条评论