CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 梯度下降法

搜索资源列表

  1. 感知准则函数

    0下载:
  2. 感知准则函数,包括固定增量法和梯度下降法,都是模式识别中的基础算法.-perceptual function criteria, including fixed increment and the gradient method, which is pattern recognition algorithm based.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:1395
    • 提供者:
  1. BpNetJava

    0下载:
  2. 单隐层神经网络,采用标准梯度下降法进行训练-single hidden layer neural network, using standard gradient method for training
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:33160
    • 提供者:李佳
  1. rbf2

    0下载:
  2. 此源代码仍然是训练RBF网络的,但用的算法是梯度下降法,算法仍然是自己写的
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:7037
    • 提供者:张媛
  1. fuzzyopt

    0下载:
  2. 用于汽车巡航控制系统的模糊控制算法,以及如何利用梯度下降法和卡尔曼滤波来优化模糊控制器的算法。The files illustrate a simple fuzzy control algorithm as applied to an automobile cruise control system. The files also illustrate how gradient descent and Kalman filtering can be used to optimize the fu
  3. 所属分类:通讯/手机编程

    • 发布日期:2008-10-13
    • 文件大小:14926
    • 提供者:gogomx
  1. bp.rar

    0下载:
  2. BP神经网络自适应步长训练算法,采用最小误差法,梯度下降法,自适应调节权值,BP neural network training anaysis, is realized by using error feed back, gradient descent applied updating of synaptic weights
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-03
    • 文件大小:1284
    • 提供者:高维
  1. Optimization

    3下载:
  2. 约束最优化方法--最速下降法(也叫梯度法),是人们用来求多个变量函数极值问题的最早的一种方法。-Constrained optimization methods- steepest descent method (also known as gradient method), is used for multiple variables function Extremum Problems earliest methods.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2012-12-20
    • 文件大小:1858
    • 提供者:anytry
  1. NLP

    2下载:
  2. matlab最优化程序包括 无约束一维极值问题 进退法 黄金分割法 斐波那契法 牛顿法基本牛顿法 全局牛顿法 割线法 抛物线法 三次插值法 可接受搜索法 Goidstein法 Wolfe.Powell法 单纯形搜索法 Powell法 最速下降法 共轭梯度法 牛顿法 修正牛顿法 拟牛顿法 信赖域法 显式最速下降法-matlab optimization program includes one-dimensional extremum problem without constraint adva
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2016-01-26
    • 文件大小:780288
    • 提供者:林小博
  1. work

    1下载:
  2. 最优化问题的快速下降法,共轭梯度法,基于matlab算法。经过测试好用-Optimization problem of the rapid descent method, conjugate gradient method, based on matlab algorithm. Tested, easy to use
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:1417
    • 提供者:daiwenchao
  1. toro.tar

    0下载:
  2. 非常优秀的全局最优化算法实现,使用迭代随机梯度下降法处理高维度的最优化问题。国外很多优化工程也是在此基础上开发的。 作者:Giorgio Grisetti Cyrill Stachniss Slawomir Grzonka Wolfram Burgard-TORO is an optimization approach for constraint-network. It provides an efficient, gradient descent-based error minimiza
  3. 所属分类:Algorithm

    • 发布日期:2017-05-10
    • 文件大小:2182754
    • 提供者:Wilford
  1. bp

    0下载:
  2. 用bp算法拟合正弦曲线,并采集数据。其基本思想是梯度下降法。-Sine curve fitting algorithm with a bp, and collecting data. The basic idea is the gradient descent method.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-03
    • 文件大小:290809
    • 提供者:贾献冉
  1. conjgrad

    0下载:
  2. 在matlab中实现共轭梯度算法,它的基本思想是在共轭方向法和最速下降法之间建立某种联系,以求得到一个既有效又有较好收敛性的算法-based on matlab to realize arithmetic of conjugate grads
  3. 所属分类:matlab

    • 发布日期:2017-11-12
    • 文件大小:1426
    • 提供者:缪飞
  1. unconstrained_optimization

    1下载:
  2. VC实现的,多维函数搜索,无约束优化方法, (1)最速下降法 (2)阻尼牛顿法(3)共轭梯度法 (4)鲍维尔法(5)变尺度法(6)单纯形法 -VC implementation, multi-dimensional function of search, unconstrained optimization methods, (1), steepest descent method (2) damped Newton' s method (3) conjugate gradient
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-13
    • 文件大小:3191037
    • 提供者:李湖
  1. Unconstrained_optimization

    3下载:
  2. 压缩包里包含了无约束优化问题常用的几种求解方法的源程序:变量轮换法(variable_rotation.m)、最速下降法(steepest_descent.m)、修正牛顿法(modified_newton.m)、共轭梯度法(conjugate_gradient.m)。另外,coefficient_matrix.m为目标函数系数获得矩阵,minval.m为最小值计算函数,gradient.m为梯度计算函数-Compression bag contains unconstrained optimiz
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:4607
    • 提供者:闫安心
  1. Nonlinear_Programming

    3下载:
  2. 非线性规划中的最陡下降法、BFGS方法和共轭梯度法matlab源程序(3-拟牛顿BFGS方法).m-Non-linear programming in the steepest descent method, BFGS and conjugate gradient method matlab source code (3- Quasi-Newton BFGS method). M
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:738
    • 提供者:lilin
  1. Equalizer_LSM

    0下载:
  2. 基于LM算法实现的均衡器。采用梯度估计近似实现最陡下降法。给出最后实验误差平方的均值曲线图。有完整的注释。-LM algorithm based on the equalizer. Similar to the realization of the estimated gradient steepest descent method. Finally, given the experimental error of the mean-square curve. Note complete.
  3. 所属分类:3G develop

    • 发布日期:2017-04-07
    • 文件大小:774
    • 提供者:why98
  1. TIDUXIAJ

    0下载:
  2. 多变量无约束问题的优化最优化方法之梯度下降法-Optimization of the gradient descent method
  3. 所属分类:matlab

    • 发布日期:2017-03-25
    • 文件大小:695
    • 提供者:王建君
  1. Newton

    0下载:
  2. 回溯先搜索法梯度下降法与牛顿迭代算法结合的MATLAB例程(Backtracking first search method, gradient descent method and Newton iterative algorithm combined with MATLAB routines)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-25
    • 文件大小:6035456
    • 提供者:carpinter
  1. zuisuxiajiang_2+gongetidu_4

    1下载:
  2. 使用最速下降法和共轭梯度法实现优化功能,基于MATLAB平台使用m语言编写(Based on the MATLAB platform, steepest descent method and conjugate gradient method are used to achieve the optimization function with M language.)
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:221184
    • 提供者:蜗牛run
  1. Matlab optimization programming example

    2下载:
  2. 分别用最速下降法、FR共轭梯度法、DFP法和BFGS法求解一个典型数学优化问题。(A typical mathematical optimization problem is solved by steepest descent method, FR conjugate gradient method, DFP method and BFGS method respectively.)
  3. 所属分类:matlab例程

    • 发布日期:2020-09-03
    • 文件大小:59392
    • 提供者:stlu2008
  1. code

    2下载:
  2. matlab实现四种最优化搜索方法 共轭梯度法 牛顿法 最速下降法 拟牛顿法 对一个十维函数的极值搜索(matlab optimal search)
  3. 所属分类:matlab例程

    • 发布日期:2020-11-15
    • 文件大小:3072
    • 提供者:neruo
« 1 23 4 5 6 7 8 9 10 ... 19 »
搜珍网 www.dssz.com