搜索资源列表

  1. newton

    0下载:
  2. 牛顿迭代法是求解非线性微分方程中非常重要的一种算法,收敛速度快!本文提供算例和程序-Newton iterative method is very important for solving nonlinear differential equations an algorithm fast convergence speed! This article provides examples and procedures
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-20
    • 文件大小:16384
    • 提供者:陈岩
  1. Newton-Raphson

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

    • 发布日期:2024-05-20
    • 文件大小:9216
    • 提供者:tianjingjing
  1. test2_1

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

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

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

    • 发布日期:2024-05-20
    • 文件大小:13312
    • 提供者:刘晓伟
  1. Newton

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

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

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

    • 发布日期:2024-05-20
    • 文件大小:886784
    • 提供者:little青
  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. 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. 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. 牛顿迭代法求初始点

    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. wave field simulation program of Ⅰ layer

    0下载:
  2. 牛顿迭代法震源定位代码,,,,,,,,,,,,,,,,,(niudundiedaifazhenyuandaima)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:侯文伟
  1. Newton.py

    0下载:
  2. 牛顿迭代法寻找极值 1.6.1. 优点 在凸函数很初始点选取好的情况下,收敛快。 1.6.2. 缺点 ? 计算二阶导数,计算量大 ? 要求函数二阶可微 ? 收敛性与初始点选取有关(Newton iteration method to find extreme values)
  3. 所属分类:matlab例程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:Titan ye
« 1 2 3 45 6 7 8 9 10 ... 32 »

源码中国 www.ymcn.org