CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - conjugate gradient

搜索资源列表

  1. CG

    1下载:
  2. 共轭梯度法CGmatlab程序 解线性方程组-Conjugate gradient method matlab program for solving linear equations
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:726
    • 提供者:zn
  1. conjugate_gradient

    1下载:
  2. 最优化方法中共轭梯度法的matlab程序-Optimization method of conjugated gradient method matlab program
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:528
    • 提供者:陈莫
  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. getd

    0下载:
  2. 共轭梯度法,是数值分析中很重要的一种,源码为其在matlab中的实现。-Conjugate gradient method, numerical analysis is a very important one in the matlab source code for its realization.
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:1015
    • 提供者:马丫
  1. Conjugate-Gradient-Method-source

    0下载:
  2. 共轭梯度法源程序,可以再vc++下进行运行-Conjugate Gradient Method source
  3. 所属分类:CSharp

    • 发布日期:2017-04-28
    • 文件大小:13334
    • 提供者:feng
  1. Conjugate-Gradient-Method(matlab)

    0下载:
  2. matlab程序,1文件功能用FR共轭梯度法求解无约束问题,2、3文件分别表示目标函数和梯度-matlab program, a file function with FR conjugate gradient method for solving unconstrained problems, 2,3 document represent the objective function and gradient
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:975
    • 提供者:张婧茹
  1. conjugate-gradient-methods

    0下载:
  2. 用FR共轭梯度法求解无约束问题: min f(x)-By FR conjugate gradient method for solving unconstrained problem: min f (x)
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:995
    • 提供者:王乾龙
  1. Conjugate-Gradient

    0下载:
  2. Conjugate Gradient method implemented by matlab
  3. 所属分类:source in ebook

    • 发布日期:2017-04-13
    • 文件大小:1557
    • 提供者:mani sabeti
  1. Conjugate-Gradient

    0下载:
  2. 机械优化设计中的共轭梯度算法 优化二维方程-Conjugate Gradient
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:632
    • 提供者:魏俊人
  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. conjugate-gradient-algorithm

    0下载:
  2. conjugate gradient algorithm for echo cancellation. adaptive filter for noise canellation
  3. 所属分类:matlab

    • 发布日期:2017-05-05
    • 文件大小:225830
    • 提供者:yogesh
  1. the-conjugate-gradient-method

    0下载:
  2. the conjugate gradient method,-This article presents a three-containing conjugate gradient method, and prove the algorithm decline and global convergence, which demonstrate the effectiveness of the algorithm.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-05
    • 文件大小:322606
    • 提供者:akd
  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. Preconditioned-conjugate-gradient.f90

    0下载:
  2. Preconditioned conjugate gradient method for 2D poisson equation
  3. 所属分类:matlab

    • 发布日期:2017-12-17
    • 文件大小:2048
    • 提供者:planck
  1. Gradient conjuge

    0下载:
  2. Conditional Gradient Method algorithm
  3. 所属分类:matlab例程

    • 发布日期:
    • 文件大小:2048
    • 提供者:math1
  1. Conjugate-Gradient-C-implementation-master

    0下载:
  2. Conjugate Gradient Method
  3. 所属分类:数学计算

    • 发布日期:2018-04-30
    • 文件大小:23552
    • 提供者:ragnar
  1. ConjGrad

    0下载:
  2. Conjugate Gradient Method for finding minimum of funcitons
  3. 所属分类:数学计算

    • 发布日期:2018-05-06
    • 文件大小:40960
    • 提供者:shonga
« 1 2 34 5 6 7 8 9 10 ... 29 »
搜珍网 www.dssz.com