登录
首页 » matlab » Array_erjiezhui

Array_erjiezhui

于 2019-09-22 发布
0 344
下载积分: 1 下载次数: 25

代码说明:

说明:  本程序为一宽带波束形成程序,基于二阶锥规划求解。可以直接运行,但使用者必须提前下载并安装CVX凸优化工具包。(This program is a broadband beamforming program based on second-order cone programming. It can run directly, but users must download and install the CVX convex optimization toolkit in advance.)

文件列表:

Array_erjiezhui.m, 2964 , 2019-08-12

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

发表评论

0 个回复

  • 相控阵雷达天线模型及仿真
    相控阵雷达天线模型及仿真论文,非常好用,推荐(Phased array radar antenna model and simulation paper, very useful, recommended)
    2019-04-21 15:46:36下载
    积分:1
  • testUSB
    用VC++6.0编写的USB通讯测试的程序,可以实现查找PC的USB外设,读取USB外设的设备描述符等功能。对USB通讯初学者有很大的帮助。(Written in VC++6.0 using USB communications test procedure, can be achieved to find PC' s USB peripherals, read the USB peripheral device descriptor functions. USB communication to the very helpful for beginners. )
    2010-01-28 05:22:12下载
    积分:1
  • lbc_example:未编码的BPSK调制的性能(理论计算与仿真)、重复码硬判决的性能 lbc_example_SD: 未编码的BPSK调制的性能(理论计算)、重复码硬判决的性能、重复码软判决的性能 lbc_example_SD_EbNo:lbc_example_SD中的性能,并且进一步考虑了码率不同时,对于信道的SNR值进行归一化,以Eb/No = SNR/(2*R)为横坐标时的比较结果 lbc_example_Hamming_EbNo:汉明码,硬判决译码的性能(Lbc_example: Performance of uncoded BPSK modulation (theoretical calculation and simulation), performance of duplicate code hard decision Lbc_example_SD: Performance of uncoded BPSK modulation (theoretical calculation), performance of hard decision of duplicate code, performance of soft decision of duplicate code The performance of lbc_example_SD_EbNo: lbc_example_SD is considered, and the SNR value of channel is normalized when the bit rate is different. The comparison results are obtained when Eb/No = SNR/(2*R) is the abscissa coordinate. Lbc_example_Hamming_EbNo: Hamming Code, Performance of Hard Decision Decoding)
    2019-04-24 14:02:35下载
    积分:1
  • VoiceTest
    用于检测手机麦克风输入音量大小的DEMO(it s used to detect the volume of phones micphone)
    2013-10-02 14:45:30下载
    积分:1
  • stm32f411_mdk
    STM32F411的心电测试程序,经过测试,绝对可用。(ECG_TESTCMSIScore_cm3.c ECG_TESTCMSIScore_cm3.h ECG_TESTCMSISstartupstartup_stm32f10x_hd.s ECG_TESTCMSISstartupstartup_stm32f10x_ld.s ECG_TESTCMSISstartupstartup_stm32f10x_md.s ECG_TESTCMSISstm32f10x.h ECG_TESTCMSISsystem_stm32f10x.c ECG_TESTCMSISsystem_stm32f10x.h ECG_TESTFWlibincmisc.h ECG_TESTFWlibincstm32f10x_adc.h ECG_TESTFWlibincstm32f10x_bkp.h ECG_TESTFWlibincstm32f10x_can.h ECG_TESTFWlibincstm32f10x_crc.h ECG_TESTFWlibincstm32f10x_dac.h ECG_TESTFWlibincstm32f10x_dbgmcu.h ECG_TESTFWlibincstm32f10x_dma.h ECG_TESTFWlibincstm32f10x_exti.h ECG_TESTFWlibincstm32f10x_flash.h ECG_TESTFWlibincstm32f10x_fsmc.h)
    2017-11-26 22:54:19下载
    积分:1
  • C00-NTAH-20070827-008-LGE-PAPR-Reduction-for-OFDM
    C00-NTAH-20070827-008-LGE-PAPR Reduction for OFDM
    2014-09-01 00:32:48下载
    积分:1
  • DRM外辐射源雷达杂波抑制
    说明:  DRM 外辐射源雷达的杂波抑制算法代码,LMS RLS ECA 有问题。(The code of clutter suppression algorithm for DRM external emitter radar has some problems with LMS RLS ECA.)
    2020-12-23 17:49:06下载
    积分:1
  • 802.11-Wireless-Networks
    802.11 Wireless Networks
    2011-12-27 22:17:31下载
    积分:1
  • PAPR
    OFDM中降低峰均比的方法,将传统的SLM法,改进的SLM法和限幅加改进SLM法进行比较(Compare OFDM PAPR reducing methods in the traditional SLM method, improved SLM method and limiter plus improved SLM method)
    2014-05-10 16:18:09下载
    积分:1
  • bpsk_Awagn_Rayleigh
    说明:  实现了一个直接扩频系统,使用BPSK作为调制解调方法。并比较白噪声AWGN及瑞利衰落(rayleigh fading)环境下,误码率的影响。(There are two files in the zip folder. bpsk_spread.m and jakesmodel.m Steps for simulation: 1] Run jakesmodel.m first 2] Then run bpsk_spread.m . 3] Note that during the first run bpsk_spread.m has no rayleigh fading.This is because the corresponding code has been commented 4] The resulting performance is stored in BER_awgn. 5] Now uncomment the Rayleigh Fading code in bpsk_spread.m file. 6] Same time comment BER_awgn (line 112) and uncomment BER_ray variable. 7] Run the simulation. To compare the perfromances of the receiver using DSSS plot the BER_awgn and BER_ray >>semilogy([1:8],BER_awgn(1:8), g* ) hold on semilogy([1:8],BER_ray(1:8), -.b* ) hold on grid on )
    2010-03-22 23:11:17下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载