登录
首页 » matlab » MIMO-SCM

MIMO-SCM

于 2011-04-26 发布 文件大小:425KB
0 221
下载积分: 1 下载次数: 63

代码说明:

  利用SCM信道对mimo系统所在的各种环境下的信道容量进行仿真分析。(SCM for mimo channels using the system under a variety of environments where the channel capacity for simulation.)

文件列表:

41695027SCM
...........\SCM
...........\...\SCM
...........\...\...\Capacity.m,280,2008-07-27
...........\...\...\CorParameters.m,483,2008-07-10
...........\...\...\DIST.m,117,2008-07-07
...........\...\...\FastFading.m,1216,2008-07-27
...........\...\...\FastFadingPol.m,4448,2008-07-30
...........\...\...\G3.m,550,2008-07-18
...........\...\...\G6.m,550,2008-07-18
...........\...\...\Multipath.m,3718,2008-07-27
...........\...\...\MultipathPol.m,3825,2008-07-25
...........\...\...\Options.fig,3456,2008-07-25
...........\...\...\Options.m,6249,2008-07-25
...........\...\...\OrientationsFixBS.m,598,2008-07-19
...........\...\...\PDPmacro.m,331,2008-04-28
...........\...\...\PDPmicro.m,214,2008-04-28
...........\...\...\plots.fig,10962,2008-07-13
...........\...\...\plots.m,6020,2008-07-23
...........\...\...\pol_submacro.fig,19834,2008-07-27
...........\...\...\pol_submacro.m,94000,2008-07-24
...........\...\...\pol_urbmacro.fig,19827,2008-07-27
...........\...\...\pol_urbmacro.m,94000,2008-07-25
...........\...\...\pol_urbmicro.fig,20008,2008-07-27
...........\...\...\pol_urbmicro.m,96584,2008-07-24
...........\...\...\progressbar.m,9977,2008-04-12

...........\...\...\SCM.fig,3065,2008-04-12
...........\...\...\SCM.m,2859,2008-07-07
...........\...\...\submacro.fig,17438,2008-07-27
...........\...\...\submacro.m,83181,2008-07-24
...........\...\...\urbmacro.fig,17441,2008-07-27
...........\...\...\urbmacro.m,83181,2008-07-25
...........\...\...\urbmicro.fig,17750,2008-07-27
...........\...\...\urbmicro.m,90234,2008-07-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • GA
    说明:  最优问题求解工具包,通过GA遗传算法,可以求得最优解。(Optimal problem solving toolkit, through the genetic algorithm GA, you can get the optimal solution.)
    2010-10-30 10:58:39下载
    积分:1
  • LDPC
    LDPC码是通过校验矩阵定义的一类线性码,为使译码可行,在码长较长时需要校验矩阵满足“稀疏性”,即校验矩阵中1的密度比较低,也就是要求校验矩阵中1的个数远小于0的个数,并且码长越长,密度就要越低。 (LDPC Coding with PSK modulation in Rayleigh fading channel Most of the functions are built in matlab functions found in the comm. toolbox. These can also be easily configurable in the code to meet your requirements. In the given code, set the SNR, codeRate, modulation order (psk) and Number of frames to be simulated. Please feel free to contact me and let me know your comments. )
    2013-04-03 09:47:51下载
    积分:1
  • changdop
    TOA定位算法,代码无错误,根据站点信息,闪电位置计算出接受信息,然后加误差反演出数据(TOA for matlab)
    2012-12-12 17:51:27下载
    积分:1
  • 多种光栅反射谱传输谱仿真
    说明:  针对多种光栅,传输谱反射谱进行仿真,同时对反射谱加入切趾函数抑制旁瓣,MATLAB仿真(For a variety of gratings, the transmission spectrum reflection spectrum is simulated, and the apodization function is added to the reflection spectrum to suppress side lobes, MATLAB simulation)
    2020-07-02 05:40:02下载
    积分:1
  • cluster_test1
    关于聚类问题的matlab程序以及其中函数的说明(clustering on the Matlab procedures and functions which the note)
    2007-01-05 16:38:23下载
    积分:1
  • 60-small-self-Matlab-code
    自学Matlab必备的60个小程序代码,(60 small self-Matlab essential program code)
    2013-02-25 14:22:56下载
    积分:1
  • 6_1
    1. 定义一个抽象学生类CStudent,它具有公有成员函数Average(),该函数用于计算学生的平均分,函数为虚函数;定义一个文科学生类CStudentLiberalArts,它是类CStudent的派生类,并以公有方式派生,它具有的成员有: 1) 保存英语、政治、数学、地理和历史、美术成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 定义一个理科学生类CStudentScience,它是类CStudent的派生类,并以公有方式派生,它具有的成员为: 1) 保存英语、物理、数学、化学和计算机、程序设计成绩的整形成员变量; 2) 设置上述变量的公有成员函数; 3) 输出上述变量的公有成员函数; 4) 公有的成员函数Average()用于计算学生的平均分; 编写主函数,并测试以下内容: 1) 定义一个CStudent的指针数组pStu,数组长度为4; 2) 动态创建2个文科学生的对象,地址存于pStu数组的0-1个元素内; 3) 动态创建2个理科学生的对象,地址存于pStu数组的2-3个元素内; 4) 利用while循环调用数组里每个元素的计算平均成绩操作; 释放动态分配的空间,确保必要的析构函数能被调用。 (1 define an abstract class student CStudent, it has a public member function Average (), this function is used to calculate the student s average points function as virtual function definition of a liberal arts student class CStudentLiberalArts, it is the class CStudent derived class, and public be derived, which has members are: 1) Save English, shaping member variables politics, mathematics, geography and history, art achievements 2) Set the above variables public member function 3) public member function of the output of the variable 4) public member function Average () is used to calculate the average student s points The definition of a science student class CStudentScience, it is the class CStudent derived class, and public manner derived, which has members as follows: 1) Save English, physics, mathematics, chemistry and computer programming achievement shaping member variables 2) Set the above variables public member function 3) public member function of t)
    2014-10-20 15:29:16下载
    积分:1
  • Lubrication-calculation
    主要实现可倾瓦轴承轴承油膜压力计算,文件包括雷诺方程的差分求解的理论推导和matlab实现代码。(The main achievement tilting pad bearings film pressure calculations, including the theory of differential file solving the Reynolds equation is derived and matlab implementation code.)
    2021-03-09 20:09:27下载
    积分:1
  • iir
    IIR滤波器的matlab实现,代码精简,实用。(IIR filter matlab realize, code streamlining and practical.)
    2008-05-05 19:01:45下载
    积分:1
  • matlab-matrix-operations-Daquan
    matlab矩阵操作大全,还包括一些特殊矩阵的生成(matlab matrix operations Daquan, including the formation of some special matrices)
    2011-05-26 09:54:57下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载