搜索资源列表

  1. Newton

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

    • 发布日期:2024-05-20
    • 文件大小:6035456
    • 提供者:carpinter
  1. Newton

    0下载:
  2. 简易牛顿迭代法小程序,方便广大数值计算算法爱好者,精度自定。(Simple Newton iterative method)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:886784
    • 提供者:little青
  1. [原创]模拟退火算法论文集

    0下载:
  2. 牛顿迭代求根遗传退火算法的APP打包,十分实用,适合新手(The Numerical Phenomenon in Newton's Iterative Method for Solving Complex Polynomials)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:1037312
    • 提供者:湛湛青天
  1. weibull code

    0下载:
  2. 利用牛顿迭代解决webull分布的极大似然估计的问题(Using Newton iteration to solve the maximum likelihood estimation of Webull distribution)
  3. 所属分类:数学计算/工程计算

  1. CUMCM2016Problems

    0下载:
  2. 通过牛顿迭代法和求一受力分析个链狀物体的受力值(Calculating the force value of a chain object by Newton iteration method)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:654336
    • 提供者:思巧
  1. newton

    0下载:
  2. 牛顿迭代法,与传统意义上的迭代法类似,只是将f(x)进行泰勒级数展开,只保留前两项,然后进行迭代。其迭代方程为x_(k+1)=x_k-(f(x_k))/(f^' (x_k))。 从编程上来讲,以上述方程对固定范围的复数域中的每个点作为初始点进行迭代,每个点都会收敛到该方程的一个解,对不同的解涂抹不同的颜色,就会看出其收敛范围。如果想得到其精确解所在位置,可通过到达给定精度的迭代次数进行判断,因为该点越接近精确解,其迭代速度越快。以下对
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:196608
    • 提供者:summer3575
  1. newtoniteration

    0下载:
  2. 本程序为使用牛顿迭代法和近似估计法解非线形方程组,包含详细的例程(Newton iteration method and approximation for solving nonlinear equations)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:wudubird
  1. 牛顿迭代法的MATLAB实现_云磊

    0下载:
  2. 牛顿迭代法是方程求根中的一种较快捷的迭代方法,但遇到较复杂的方程时计算量较大。文章采用了MATLAB编程来实现牛顿迭代法,并给出了具体的计算例子。(Using the MATLAB programming to realize the Newton iterative method)
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:2770944
    • 提供者:Effie
  1. 11

    0下载:
  2. 牛顿迭代法是必须要学习的内容,同时也要进行编程(The Newton iteration is the content that must be learned, and also to be programmed.)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:xjdd
  1. 新建文件夹

    0下载:
  2. 牛顿迭代法是考试必考的内容,所以,我们既要掌握它的原理,也要编写代码(Newton iterative method is the examination content, so we should grasp the principle of it is to write code)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:xjdd
  1. diedaifa

    0下载:
  2. 牛顿迭代法(Newton's method)又称为牛顿-拉夫逊(拉弗森)方法(Newton-Raphson method),它是牛顿在17世纪提出的一种在实数域和复数域上近似求解方程的方法。多数方程不存在求根公式,因此求精确根非常困难,甚至不可能,从而寻找方程的近似根就显得特别重要。方法使用函数f(x)的泰勒级数的前面几项来寻找方程f(x) = 0的根。牛顿迭代法是求方程根的重要方法之一,其最大优点是在方程f(x) = 0的单根附近具有
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:25600
    • 提供者:xzt
  1. Desktop

    0下载:
  2. 用于非线性方程计算的牛顿迭代法,给水工程管网平差计算(nonlinear equation method of iteration)
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:jsjs
  1. matlab

    0下载:
  2. 利用牛顿迭代解决非线性方程组问题,属于数学计算范畴。(The problem of nonlinear equations is solved by Newton iteration, which belongs to the category of mathematical calculation.)
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:56542208
    • 提供者:乔川
  1. Newton iterative algorithm and matlab code

    0下载:
  2. 文档中包含有牛顿迭代法算法原理解析,包括一般非线性方程和非线性方程组,其中附有一个非线性方程组的实际例子和相应matlab求解代码,例子的实验可以加深对算法的理解和运用。(The document contains the Newton iterative algorithm analysis, including general nonlinear equations and nonlinear equations group, wh
  3. 所属分类:文档资料

    • 发布日期:2024-05-20
    • 文件大小:147456
    • 提供者:熊二的大哥
  1. Burgers方程_牛顿迭代法

    1下载:
  2. 用牛顿迭代法求解Buegers方程的精确解(Solving the exact solution of Buegers equation by Newton's iterative method)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:simizar
  1. 33967121feixianxing

    0下载:
  2. 求解非线性方程组,牛顿迭代法 改进的牛顿迭代法(To solve the nonlinear equations)
  3. 所属分类:文档资料

    • 发布日期:2024-05-20
    • 文件大小:11264
    • 提供者:yxqing1
  1. Power Flow6.23

    0下载:
  2. MATLAB求解电力系统潮流;牛顿迭代法;适用于14节点30节点300节点1047节点等。(MATLAB solves the power system tidal current; Newton iteration method; it applies to 14 nodes, 30 nodes, 300 nodes, 1047 nodes, etc.)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:麻辣小月饼
  1. Lfnewton

    0下载:
  2. 牛顿迭代打独立思考的卡了是单卡手机打开链接打开了手机(lfnewtonThis program obtains th Bus Admittance Matrix for power flow solution)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:小仲
  1. 牛顿迭代法求初始点

    1下载:
  2. 根据齿面方程方程求解齿面点坐标时,初始点的选择是至关重要的,给出了利用牛顿迭代法求初始点的方法(According to the equation of tooth surface, the selection of initial points is very important when solving the coordinates of tooth face points. The method of finding initi
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:玄和小疯子
  1. 编程求解实际气体状态方程_潘宝娟

    0下载:
  2. 通过牛顿迭代求解气态方程的源代码,已测试能够正常使用的。。有用(a very good pdf file Newton iterative solution of gaseous equation)
  3. 所属分类:书籍源码

    • 发布日期:2024-05-20
    • 文件大小:73728
    • 提供者:ssc1989
« 1 2 3 4 56 7 8 9 10 ... 41 »

源码中国 www.ymcn.org