登录
首页 » Others » 应用Visual+C++平台的GPS精密单点定位程序设计

应用Visual+C++平台的GPS精密单点定位程序设计

于 2020-12-03 发布
0 280
下载积分: 1 下载次数: 3

代码说明:

应用Visual+C++平台的GPS精密单点定位程序设计

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

发表评论

0 个回复

  • 四阶龙格库塔解微分方的matlab源
    这是一个利用四阶显性龙格库塔方法解微分方程的matlab源程序,可以直接运行,无错误。
    2020-12-05下载
    积分:1
  • 基于科大讯飞语音云识别软件
    这是我花了5天时间做出来的基于科大讯飞语音云的语音识别和文字转语音的软件,支持多种中文语言,使用C++/CLR开发,讯飞提供的是C的开发包。同时录音部分还使用了DirectX,使用该软件需要安装DirectX。需要该软件详细介绍的可以访问我的CSDN博客。整个代码相当于拼凑出来的,若大家有其他意见,欢迎指教。
    2021-05-06下载
    积分:1
  • 用C#写的网络端口扫描器(含源代码)
    本人认为真正厉害的黑客不是仅仅精于使用别人开发出来的黑客工具,而是自己利用所学的知识去开发自己想要的工具。况且去下载别人的工具,有时候就上了别人的钩了,很多黑空工具本身就绑定木马,自己黑别人不成,却先被别人黑了。但是要申明一点,我学黑客技术是想做中国的红客,在必要的时候与同好为国民出口恶气...
    2020-11-27下载
    积分:1
  • PingFangSC-Regular
    精简版的简体PingFangSC-Regular 字体。包括3500个常用字体和字母数字
    2020-12-08下载
    积分:1
  • 最新最全1.8寸tft液晶屏st7735资料及其代码(安卓、C51、stm32)
    最新最全的1.8寸tft液晶屏文档及三份代码(安卓、C51、stm32),只需要改引脚就可使用,很简单也很齐全的资料。
    2020-11-30下载
    积分: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
  • Delplhi_UniGUI 适合大多数管理软件开发的框架源代码
    所有开发人员或者技术团队,可以在本框架基础上做各种管理软件开发工作,里面所有相关业务代码都有Demo,大家可以学习着如何更好的使用UniGUI。如有技术上问题,可以下载另外一份《UniGUI集合说明--追月无名.doc》。
    2020-12-06下载
    积分:1
  • 白噪声声音文件
    对软件生成的白噪声进行完全采样的文件
    2020-12-08下载
    积分:1
  • nrf24le1d pcb天线设计实例
    一个关于nrf24le1d的小项目,使用的是pcb板载天线,经过多次试验,此天线效果最佳,距离能达到100m左右。
    2020-11-28下载
    积分:1
  • CAN驱动器-MCP2515-接口序-Verilog
    MCP2515的FPGA驱动程序,使用Verilog编写,波特率由用户根据需要自行配置,目前只支持标准帧的收发
    2021-05-06下载
    积分:1
  • 696516资源总数
  • 106658会员总数
  • 16今日下载