资源简介
串行干扰消除技术有利于消除MIMO系统的多天线干扰,本文件包含ZF-sic与MMSE-sic
代码片段和文件信息
%creation of the bit stream
%n_bit is the length of the bits
%x_ran is the random number
%x_bit is the bit of 0s and 1s
function x_bit=bits(n_bit)
x_bit=zeros();
x_ran=rand(n_bit1);
for i=1:length(x_ran)
if x_ran(i)>0.5
x_bit(i)=1;
else
x_bit(i)=0;
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 298 2009-12-11 20:51 SIC\bits.m
文件 2889 2009-12-24 14:16 SIC\demodulation.m
文件 1289 2009-12-12 00:07 SIC\modulation.m
文件 4033 2009-12-29 10:44 SIC\OSIC_MMSE.m
文件 3759 2011-07-21 10:18 SIC\OSIC_ZF.m
文件 3483 2009-12-29 10:44 SIC\SIC_MMSE.m
文件 3133 2009-12-29 10:44 SIC\SIC_ZF.m
目录 0 2013-09-13 19:31 SIC
----------- --------- ---------- ----- ----
18884 8
评论
共有 条评论