美文网首页
课设中mimo的demo

课设中mimo的demo

作者: 瑶瑶_2930 | 来源:发表于2020-06-13 22:24 被阅读0次

First I'd better find a mimo demo in matlab.
Introductioin to MIMO system


Step Analysis

  • Generate data vector per frame
    data = randi([0 P-1], frmLen, 1);
  • Modulate data
    modData = bpskMod(data);
  • Alamouti Space-Time Block Encoder
    encData = ostbcEnc(modData);
  • Create the Rayleigh distributed channel response matrix for 2*2 antennas
H = zeros(frmLen, N, M);
H(1:N:end, :, :) = (randn(frmLen/2, N, M) + ...
                         1i*randn(frmLen/2, N, M))/sqrt(2);
% assume held constant for 2 symbol periods
H(2:N:end, :, :) = H(1:N:end, :, :); % I don't know why:(

其中,randn(a,b,c)
normally distributed number and a,b,c indicates the size of the matrix

  • Extract part of H to represent the 1x1, 2x1 and 1x2 channels
 H11 = H(:,1,1);
 H21 = H(:,:,1)/sqrt(2);  % 2*1 channel  why /sqrt(2)
 H12 = squeeze(H(:,1,:));  % 1*2 channel squeeze: same elements but with dimensions of length 1 removed
  • Pass through the channels
chanOut11 = H11 .* modData; % for 1*1 channel  no need to be encoded
chanOut21 = sum(H21.* encData, 2);
chanOut12 = H12 .* repmat(modData, 1, 2);

Question: how to set the channel and calculate the output?

  • 4 channel , sum up

why sqrt2? what if I use rayleigh channel module?


Additional Gain

for 1:numPackets
            every frame

Using loops to decrease the computation load

相关文章

  • 课设中mimo的demo

    First I'd better find a mimo demo in matlab.Introductioin...

  • 柯基mimo的日常

    一脸懵逼的mimo + 妙蛙种子 mimo + Bulbasaur

  • MIMO技术

    MIMO多输入多输出技术(Multiple input Multiple output) LTE系统中下行MIMO...

  • 2017-06-08今日总结

    经历: 1.课设 2.数电实验 3.和组员一起完成ppt 总结: 1.今天课设的内容结束了,在这次课设中,虽然我负...

  • spring boot 发布到centos7服务器

    一、服务打包 二、服务器上部署 上传demo.jar到服务器,如:上传到/home/demo/demo.jar 设...

  • Building a Process Model-MIMO Bl

    对MIMO模块允许的操作是:•创建 – 可以通过将MIMO模块图标从“SMOCPro Library”目录拖动到模...

  • 正式实习的前一晚

    暑假从明天就正式开始了,上周一在中设集团智能交通研究中心签了实习协议,但因桥梁课设没有完成,所以就半天做课设,半天...

  • 2018-03-06

    【无线组网】 4G:OFDM+MIMO 5G:OFDM+massive MIMO(大规模阵列天线) 基站扇区:在蜂...

  • 人工智能之机器学习——集成学习

    在无线通信中,有一种广受欢迎的“MIMO”传输技术。MIMO 的全称是多输入多输出(Multiple Inp...

  • 波形优化学习(一)研究现状

    姓名:林明聪;学号:21021210897;学院:电子工程学院 【嵌牛导读】MIMO雷达波形优化是指利用MIMO雷...

网友评论

      本文标题:课设中mimo的demo

      本文链接:https://www.haomeiwen.com/subject/iuqitktx.html