登录
首页 » Others » matlab3种内插法的实现

matlab3种内插法的实现

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

代码说明:

自己用matlab写的对于最近邻内插法,双线性内插法,双三次内插法的具体实现

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

发表评论

0 个回复

  • 3种模板匹配法实现的手写数字识别示例
    3种模板匹配法实现的手写数字识别示例3种模板匹配法实现的手写数字识别示例3种模板匹配法实现的手写数字识别示例
    2020-12-02下载
    积分:1
  • tcp客户端序之mfc实现
    一个使用MFC实现的tcp客户端程序,程序简单,想学习mfc的或是tcp套接字的可以参考下。
    2020-12-05下载
    积分:1
  • 基于QT技术实现无线点菜系统源代码+论文
    这是我的毕业设计基于QT技术实现无线点菜系统源代码+论文,有源代码加论文,还有答辩稿,绝对没错误!
    2020-12-04下载
    积分:1
  • ssh+mysql实现的超市进销存管理系统项目源码.rar
    ssh+mysql实现,包含项目源码,mysql数据库文件,项目使用教学视频以及论文文档。本项目使用eclipse完成。
    2020-12-10下载
    积分:1
  • 常规PID模糊PID神经网络PID控制效果比较-success.rar
    常规PID模糊PID神经网络PID控制效果比较-success.rar最近做毕设,题目是智能励磁,做了个模糊PID和神经网络PID励磁控制,说白了,和励磁没任何关系,就是对一个三阶模型进行控制,现在与大家分享下。其中常规PID和模糊PID是用仿真实现的,而神经网络PID是用编程实现的。现已附上GUI和mdl文件。
    2020-12-10下载
    积分:1
  • 银行logo(100多家银行).zip
    一百多个中国各大银行开户行高清图标,bankCode-银行名称都有注释,打包带走
    2020-03-06下载
    积分:1
  • PCA-SVM人脸识别代码
    采用PCA进行人脸特征脸的提取,基于osu-svm进行分类,采用的数据集是ORL人脸库,识别正确率可达93%。资源包括代码,osu-svm工具箱,orl人脸库、实验保存的数据以及对程序的详细说明,值得刚开始做人脸识别的看看!
    2020-12-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
  • 立方体线框模型透视投影 (计算机图形学实验)
    计算机图形学实验 立方体线框模型透视投影 的可执行文件,亲测可运行,若需报告可以联系我,期待和各位交流
    2020-12-11下载
    积分:1
  • 电力电子和电力拖动控制系统matlab仿真
    内容简介本书介绍了MATLAB及其图形仿真界面SIMULINK的应用基础知识,详细介绍了SIMULINK模型库的电力电子和电机模块的功能和使用,并通过大量实例介绍了电力电子电路和交直流调速系统的仿真方法和技巧。本书可以作为高等校电力电子技术和电力拖动自动控制系统类课程的教学辅助或等候课教材,也可供相关专业研究生和工程技术人员学习与参与。目录前言第1章 MATLAB基础 1.1 MATLAB介绍1.2 MATLAB的安装和启动1.3 MATLAB环境1.4 MATLAB的计算基础1.5 MATLAB程序设计基础1.6 MATLAB常用的其他命令1.7 MATLAB的绘图功
    2020-12-05下载
    积分:1
  • 696516资源总数
  • 106913会员总数
  • 8今日下载