CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 牛顿迭代法

搜索资源列表

  1. ninewton

    0下载:
  2. 牛顿迭代法求解线性方程,其收敛阶数为1次-newton iteration for liear equation
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:930
    • 提供者:wiky
  1. Broyden

    0下载:
  2. 拟牛顿迭代法是相对比较新的一种方法,克服了牛顿迭代需要求导数和求逆的缺点.-Newton iterative method is a relatively new method of Newton shall be required to overcome the derivative and inverse shortcomings.
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:1039
    • 提供者:jiaoyuwei
  1. newton

    0下载:
  2. 牛顿迭代法解非线性方程,可自定义迭代步数和迭代精度,结果可返回解得所有迭代过程,适合于就算方法的初学者作为上机实验的参考资料。-Newton iterative method for solving nonlinear equations, can be customized and iterative precision iterations, the result can be returned to solve for all the iterative process, even if
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:550
    • 提供者:李文俊
  1. nolinerequationssolves

    0下载:
  2. MATLAB求解非线性方程组的一些算法程序,牛顿迭代法,高斯迭代法等-MATLAB for solving nonlinear equations of some algorithm program, Newton iteration, Gauss iterative method, etc.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:14089
    • 提供者:liuming
  1. newton

    1下载:
  2. 牛顿迭代法用于求解非线性方程组,及求解范围-Newton iterative method for solving nonlinear equations, and solve the range
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:828
    • 提供者:凤凤
  1. newton

    0下载:
  2. 牛顿迭代法,用于求解非线性方程的解。此程序比较详细,虽然程序看上去很多,但是各方面都很到位。-Newton iterative method for solving nonlinear equations. This procedure in more detail, although the process seems a lot, but all aspects are in place.
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:591
    • 提供者:冯翔
  1. newton

    0下载:
  2. 牛顿迭代法,用于对通用多项式的计算,可自己设置处置,精度等-Newton iterative method for the calculation of general polynomials can set up their own disposal, precision
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:6513
    • 提供者:秦昌兵
  1. newton

    0下载:
  2. 牛顿迭代法求非线性方程的解,需输入初始值,方程,导数方程,步数,error-Newton iteration solution of nonlinear equations required to enter the initial value equation, derivative equation, step number, error
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:612
    • 提供者:张晓君
  1. zxecf

    0下载:
  2. 一种应用牛顿迭代法的MATLAB源程序 解决的是方程求根的问题-A MATLAB application of Newton iteration method to solve the source problem of finding roots of equations
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:676
    • 提供者:罗辉
  1. Newton-Raphson

    0下载:
  2. 牛顿迭代法对于解决非线性方程应该有很重要的作用吧-Newton iterative method for solving nonlinear equations should have a very important role it
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:9430
    • 提供者:tianjingjing
  1. test2_1

    0下载:
  2. 解方程的牛顿迭代法,清晰的步骤,帮助初学数值分析的人。-Newton iterative method of solving equations, clear steps to help beginners who numerical analysis.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:568
    • 提供者:zhoulei
  1. Newton

    0下载:
  2. 这个文件中是计算方法中牛顿迭代法的具体说明及计算计算举例。-This file is in the Newton iteration method for specific instructions and calculation Examples of calculation.
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:12909
    • 提供者:刘晓伟
  1. Newton

    0下载:
  2. 牛顿迭代法的实现,应用此程序,封装成函数,即可调用。(Newton iterative method, the application of this program, packaged as a function, you can call.)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-25
    • 文件大小:15360
    • 提供者:helloworldd
  1. Newton

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

    • 发布日期:2017-12-27
    • 文件大小:886784
    • 提供者:little青
  1. newton

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

    • 发布日期:2018-01-02
    • 文件大小:196608
    • 提供者:summer3575
  1. newtoniteration

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

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

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

    • 发布日期:2018-01-07
    • 文件大小:2770944
    • 提供者:Effie
  1. 11

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

    • 发布日期:2018-01-08
    • 文件大小: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例程

    • 发布日期:2018-01-08
    • 文件大小:2048
    • 提供者:xjdd
  1. Desktop

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

    • 发布日期:2018-01-10
    • 文件大小:1024
    • 提供者:jsjs
« 1 23 4 5 6 7 8 9 10 ... 20 »
搜珍网 www.dssz.com