登录
首页 » Others » 自适应算法——雷达地杂波

自适应算法——雷达地杂波

于 2020-11-27 发布
0 314
下载积分: 1 下载次数: 6

代码说明:

雷达地杂波的自适应算法的实现与分析。适合研究雷达地杂波的研究人员。

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

发表评论

0 个回复

  • SHT20温湿度传感器序(gpio模拟I2C)+中文手册
    SHT20温湿度传感器程序(使用GPIO口模拟I2C),包含头文件与c文件,内含中文技术手册!!
    2020-12-06下载
    积分:1
  • 企业经营数据分析——思路、方法、应用与工具
    企业经营数据分析——思路、方法、应用与工具》为从事企业经营数据分析工作的人员以及企业中的高层管理者提供数据分析的思路和方法。《企业经营数据分析——思路、方法、应用与工具》的内容来自笔者长期从业经验的总结,所有的内容都是从企业的实际应用出发,涵盖了多个行业,其中包括生产制造业、零售服务业、电商行业等,读者可以将其中的思路和方法轻松地应用到实践工作中。《企业经营数据分析——思路、方法、应用与工具》主要内容包括企业中的大数据介绍、数据分析的目的、数据分析的思路、对比与对标、分类、聚类、逻辑关系、预测、结构、各职能部门的具体数据分析、常用的数据分析工具介绍。《企业经营数据分析——思路、方法、应用与工具
    2020-12-02下载
    积分:1
  • 些VPX背板的资料
    包括不同插槽、不同拓扑结构的VPX背板的资料
    2020-12-12下载
    积分:1
  • 基于51单片机的 4×4键盘及8位数码管显示构成的电子密码锁仿真
    与大家一起分享,基于51单片机的 4×4键盘及8位数码管显示构成的电子密码锁仿真。
    2020-12-12下载
    积分:1
  • MATLAB R2008控制系统动态仿真实例教 源代码
    MATLAB R2008控制系统动态仿真实例教程 源代码
    2020-12-10下载
    积分:1
  • 合成记录Matlab代码
    Matlab编写的地震合成记录,学习使用
    2020-12-09下载
    积分:1
  • 经典遗传算法(SGA)解非线性最优化的python代码实现
    经典遗传算法(SGA)解非线性最优化问题的原理及其python代码实现
    2021-05-06下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • 光伏电池simulink模型
    正常仿真运行。
    2020-07-03下载
    积分:1
  • 3GPP TS 38.104 V16.0.0.pdf--5G基站无线发送和接收技术方面
    【实例简介】该文档为3GPP国际标准组织发布的最新5G规范,R16,主要为基站无线发送和接收技术方面,主要章节为: 1 Scope 2 Reference 3 Definitions,symbols and abbreviations 4 General 5 Operating bands and channel arrangement 6 Conducted transmitter characteristics 7 Conducted receiver characteristics 8 Conducted performance requirements 9 Radiated transmitter characteristics 10 Radiated receiver characteristics 11 Radiated performance requirements Annex A (normative): Reference measurement channels Annex B (normative): Error Vector Magnitude (FR1) Annex C (normative): Error Vector Magnitude (FR2) Annex D (normative): Characteristics of the interfering signals Annex E: Void Annex F (normative): Relationship between EIRP based regulatory requirements and 3GPP requirements Annex G (Normative): Propagation conditions Annex H (informative): Change history
    2021-11-21 00:46:12下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载