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

搜索资源列表

  1. getd

    0下载:
  2. 共轭梯度法,稀疏矩阵的计算,光束法解算的一步-Step conjugate gradient method to calculate the sparse matrix calculation, beam method
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:16487
    • 提供者:Jerry
  1. matlab

    0下载:
  2. QAM调制,最速下降法,Newton,黄金分割法, BFGS算法,非线性共轭梯度法,MAILAB实例-QAM modulation, the steepest descent method, Newton, golden section method, BFGS algorithm, nonlinear conjugate gradient method, MAILAB examples
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:6105
    • 提供者:李鹏程
  1. gongetidufa

    0下载:
  2. 用VC++应用到最优化算法中的共轭梯度法-Using VC++ applied to the optimization algorithm of the conjugate gradient method
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-14
    • 文件大小:4112
    • 提供者:vv2603dizhui42
  1. iccg

    1下载:
  2. 利用共轭梯度法求解压力泊松方程的fortran程序-Conjugate Gradient Method for Solving Poisson equation of pressure fortran program
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:2963
    • 提供者:syj
  1. nonlinear-optimization

    0下载:
  2. 非线性规划各种算法汇总,包括线搜索、梯度下降法、牛顿法、共轭梯度法、DFP算法、BFGS算法和信赖域算法-Summary all kinds of algorithm of nonlinear programming, including line search, the gradient descent method, Newton method and conjugate gradient method, DFP algorithm and BFGS algorithm and trust
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:5458
    • 提供者:夏瀛韬
  1. Conjugate_gradient

    0下载:
  2. 用共轭梯度法解决最优化问题,有应用实例。-Conjugate gradient method to solve optimization problems
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1188
    • 提供者:齐晶
  1. Conjugate_gradient_exact

    0下载:
  2. 最优化方法的共轭梯度法的精确搜索,有二次终止性。-Refine search Conjugate Gradient Method
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:988
    • 提供者:齐晶
  1. conjugate-gradient-method

    0下载:
  2. 应用共轭梯度法解微分方程的MATLAB代码-A matlab code of conjugate gradient method used for solving the differential equation.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1079
    • 提供者:杨敏
  1. Conjugate-gradient-method

    0下载:
  2. 功能:用FR共轭梯度法求解无约束问题:min f(x) 输入:x0是初始点,fun,gfun分别是目标函数和梯度 输出:x,val分别是近似最优点和最优值,k是迭代次数-Features: use FR conjugate gradient method to solve the unconstrained problem: min f (x) input: x0 is the initial point, fun, gfun is the objective functio
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:1631
    • 提供者:苗小楠
  1. frcg

    0下载:
  2. 局部最优化算法,共轭梯度法,最有解寻找,迭代循环-Local optimization algorithm
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:690
    • 提供者:Andy
  1. gongetidufa

    0下载:
  2. 一种共轭梯度法的matlab函数,可以用于求解病态的线性方程组,提高求解精度.还提供了算法的介绍文档-A conjugate gradient method of matlab function, can be used to solve ill-conditioned linear equations, improve the accuracy of solving
  3. 所属分类:matlab

    • 发布日期:2017-05-04
    • 文件大小:74207
    • 提供者:cyw
  1. gongetidu

    0下载:
  2. 代码中描述的是一个著名的LS共轭梯度法的程序-Code is described in a famous program of the LS conjugate gradient method
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1075
    • 提供者:hakunalife
  1. tuxianghuifu

    0下载:
  2. 代码中描述的是一个谱共轭梯度法的程序,用来进行图像恢复的。-Code is described in a program that spectraconjugate gradient method used for image restoration.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1338
    • 提供者:hakunalife
  1. ConjugateGradientMethod

    0下载:
  2. 求解正定二次函数的共轭梯度法及其改进算法。-Conjugate Gradient Method for Solving Positive Definite Quadratic Functions and Its Improved Algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:572
    • 提供者:langlang
  1. Conjugate-Gradient-Method

    0下载:
  2. 共轭梯度法(Conjugate Gradient)是介于最速下降法与牛顿法之间的一个方法,它仅需利用一阶导数信息,但克服了最速下降法收敛慢的缺点,又避免了牛顿法需要存储和计算Hesse矩阵并求逆的缺点,共轭梯度法不仅是解决大型线性方程组最有用的方法之一,也是解大型非线性最优化最有效的算法之一。 在各种优化算法中,共轭梯度法是非常重要的一种。其优点是所需存储量小,具有步收敛性,稳定性高,而且不需要任何外来参数。-Conjugate gradient method (Conjugate Gradie
  3. 所属分类:Algorithm

    • 发布日期:2017-05-05
    • 文件大小:367526
    • 提供者:陈怀兵
  1. conjugate-gradient

    0下载:
  2. 数值计算方法中利用共轭梯度法求解正定对称矩阵方程-Conjugate gradient method for solving symmetric positive definite matrix equation
  3. 所属分类:Algorithm

    • 发布日期:2017-12-15
    • 文件大小:1024
    • 提供者:wangbiwen
  1. FR

    0下载:
  2. 共轭梯度法(Conjugate Gradient)是介于最速下降法与牛顿法之间的一个方法,它仅需利用一阶导数信息,但克服了最速下降法收敛慢的缺点,又避免了牛顿法需要存储和计算Hesse矩阵并求逆的缺点,共轭梯度法不仅是解决大型线性方程组最有用的方法之一,也是解大型非线性最优化最有效的算法之一。 在各种优化算法中,共轭梯度法是非常重要的一种。其优点是所需存储量小,具有步收敛性,稳定性高,而且不需要任何外来参数。-The Conjugate Gradient method is a method b
  3. 所属分类:matlab

    • 发布日期:2017-12-14
    • 文件大小:1253
    • 提供者:刘杉
  1. 第7章 无约束多维极值问题

    1下载:
  2. 无约束多维极值算法 共轭梯度法 用共轭梯度法求解多维函数的极值(Unconstrained multidimensional extreme value algorithm; conjugate gradient method)
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:1024
    • 提供者:蓝羽鸟
  1. MATLAB CODE

    0下载:
  2. 实现数值计算的简单算法code 包括:非线性最小二乘问题、共轭梯度法、拟牛顿法、最速下降法与牛顿法、线搜索技术、乘子法程序、二次规划(A simple algorithm for numerical calculation, including nonlinear least squares problem, conjugate gradient method, quasi-Newton method, steepest descent method and Newton method, lin
  3. 所属分类:数学计算

    • 发布日期:2017-12-16
    • 文件大小:40960
    • 提供者:Xs_55555
  1. gongetidu

    1下载:
  2. 用于解决非线性无约束优化问题(It is used to solve nonlinear unconstrained optimization problem)
  3. 所属分类:其他

    • 发布日期:2017-12-18
    • 文件大小:1024
    • 提供者:XIAOXIAOPANG
« 1 2 ... 18 19 20 21 22 2324 25 26 »
搜珍网 www.dssz.com