登录
首页 » Others » MDI1553板卡程序.rar

MDI1553板卡程序.rar

于 2021-12-13 发布
0 220
下载积分: 1 下载次数: 2

代码说明:

神州飞航 1553B板卡自带程序 包括BC RT BM功能

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

发表评论

0 个回复

  • JsonCpp 译库lib dll 示例代码VS2015版
    本资源为JsonCpp编译库测试代码,内含x86,x64版本的静态lib库,动态Dll库,及引用头文件,测试运行代码。本人专门整理供大家使用,减少不必要的麻烦。谢谢支持。
    2020-12-10下载
    积分:1
  • KNN分类器 人脸识别
    KNN分类器实现人脸识别,数据集为ORL,40个人,每人10个图片
    2021-05-06下载
    积分:1
  • 者非常实用的流图软件Diagram Designer中文版
    流程图是编程人员整理思路必备的。新手也好,高手也好,无不需要。本身是多语言版,包含中文,自行设置即可。Diagram Designer设计器是一个简单的矢量图形流程图,图表和幻灯片编辑器。它提供可定制的对象模板(addtl.模板可下载),用大量的数学表达式绘制简单图形,支持多页,多层次图表,导入其它图形格式和更多的支持。Diagram Designer允许您创建一个图表样式,包括流程图,网络地图,应用程序接口,电子电路和更广泛的图形。Diagram Designer 这个矢量图像编辑筹建流程图,图表和滑动展览。包括一个可定制的样板及调色板,简单的图绘图仪。支持使用压缩的文件格式。简单易
    2021-05-07下载
    积分:1
  • 计算机考研408历年真和答案
    计算机考研专业课408历年真题和答案,2009-2018年,保证不缺漏大家放心下载,本人考408的时候悉心收集的,下载后给好评哦,祝大家考上理想的学校,加油
    2020-07-02下载
    积分:1
  • 模糊控制的Matlab仿真实例
    本文件详细讲述模糊控制在matlab中的应用,其中包含大量实例。
    2020-06-21下载
    积分:1
  • 最大lyapunov指数matlab
    求解Chen系统的最大lyapunov指数。求解方法为定义法。两条相轨线的步长为初设距离d0的基础上加上相对分量。求解时直接运行chen_lyapunov.m即可。可移植性强,比如换求其他系统的最大lyapunov指数,只需要改变变量数目,方程即可。
    2020-12-05下载
    积分:1
  • multisim仿真模拟电路全集
    multisim仿真模拟电路全集,内含许多种模拟电路仿真
    2020-12-09下载
    积分: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
  • matlab概率统计实验
    1. 会用Mathematica求概率、均值与方差;2. 能进行常用分布的计算;3. 会用Mathematica进行期望和方差的区间估计;4. 会用Mathematica进行回归分析。
    2020-12-08下载
    积分:1
  • 语义分析序的设计与实现
    语义分析程序的设计与实现仅供参考。语义分析 编译原理 北邮 大三实验要求:编写语义分析程序,实现对算术表达式的类型检查和求值。要求所分析算术表达式由如下的文法产生。实验要求:用自底向上的语法制导翻译技术实现对表达式的分析和翻译。(1) 写出满足要求的语法制导定义或翻译方案。(2) 编写分析程序,实现对表达式的类型进行检查和求值,并输出:① 分析过程中所有产生式。② 识别出的表达式的类型。③ 识别出的表达式的值。(3) 实验方法:可以选用以下两种方法之一。① 自己编写分析程序。② 利用YACC 自动生成工具。
    2020-11-06下载
    积分:1
  • 696518资源总数
  • 105614会员总数
  • 17今日下载