登录
首页 » Others » Altera SOPC设计中用户自定义指令和IP核开发.zip

Altera SOPC设计中用户自定义指令和IP核开发.zip

于 2021-05-06 发布
0 342
下载积分: 1 下载次数: 1

代码说明:

IP核概述.doc SOPC中自定义外设和自定义指令性能分析.pdf 基于Avalon总线TLC5628自定义IP核的开发.pdf 基于Avalon总线的TFT LCD 控制器的设计.doc 基于Avalon总线的可配置LCD控制器IP核的设计.doc 基于Avalon总线的可配置LCD控制器IP核的设计.pdf 基于Avalon总线的直流电机PWM控制.pdf 基于Avalon总线的键盘和VGA控制接口设计.pdf 基于NIOS II嵌入式处理器实现LCD的控制 .doc 基于Nios II的I2C总线接口的实现.doc 基于NIOS_嵌入式软核处理器的LCD控制方法研究

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

发表评论

0 个回复

  • SIMetrix-Self-Training-simetrix自学培训教及培训例子文件
    下载的文件是一个.msi安装程序(安装教程的例子源文件)及教程PDF文档。通过双击来运行它。这将安装一个培训PDF文件中的教程例子源文件,这些文件将被安装到我的文档SIMetrixTraining
    2020-12-08下载
    积分:1
  • 基于负荷平衡的配电网重构
    很好的配电网重构程序,已经调试通过,很适合初学者。
    2020-12-12下载
    积分:1
  • SparseLab21-Core
    囊括了当今压缩感知领域信号(图像)稀疏表示重构的经典算法(BP,MP,OMP,StOMP,IST,PFP...),由于本人上传文件限额的限制,这里重点只给大家上传了算法的matlab版code(Solvers文件夹中)
    2020-11-29下载
    积分:1
  • 直流稳压电源模块设计
    小功率整流滤波电路设计串联反馈式稳压电路设计直流稳压电源由整流电路、滤波电路和稳压电路组成。整流电路将交流电压变为脉动的直流电压,滤波电路可减小脉动使直流电压平滑,稳压电路的作用是在 电网电压波动或负载电流变化时保持输出电压基本不变。●整流电路有半波和全波两种,最常用的是单相桥式整流电路。分析整流电路时,应分别判断在变压器副边电压正、负半周两种情况下二极管的工作状态,从而得到负载两端电压、二极管端电压及其电流波形并由此得到输出电压和 电流的平均值,以及二极管的最大整流平均电流和所能承受的最高反向电压。●滤波电路通常有电容滤波、电感滤波和复式滤波,本章重点介绍了电容滤波电路。●稳压管稳
    2020-11-30下载
    积分:1
  • 经典毕业论文 基于Cisco Packet Tracer的校园网规划与组建.zip
    经典毕业论文,可以作为计算机网络、网络技术、网络工程等专业参考。包括中英文摘要、网络拓扑设计、设备配置、测试结果及分析、致谢、参考文献、附录(主要配置命令)等。
    2019-12-25下载
    积分:1
  • Qt 雷达图 卫星图
    在QT5.9 实现雷达图 和余晖扫描,可以添加,删除卫星,修改位置,颜色,标签,状态,增加卫星间连线,可设置线的颜色,状态;内附说明文档一份
    2020-12-04下载
    积分:1
  • 数字信号处理的FPGA实现(第4版)书内代码
    数字信号处理的FPGA实现(第4版)内带代码,包含VHDL和verilog其中IIR、FIR滤波器,FFT、小波等
    2020-12-10下载
    积分:1
  • LBFGS开源代码
    实现Logistic Regression的开源代码,LBFGS应该是目前普遍被采用的一种方法,代码简洁,注释详细,不得不拥有!
    2020-12-11下载
    积分: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
  • FWM 耦合方 matlab代码
    FWM耦合方程matlab代码 3个耦合方程的数值解 其中包括泵浦波 信号波 闲频波
    2020-11-28下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载