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

搜索资源列表

  1. newton

    1下载:
  2. 用fortran编写的牛顿迭代法的源程序-Fortran prepared by Newton iteration of the source
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:3966
    • 提供者:张家乡
  1. 20084

    0下载:
  2. 数值分析的C语言程序, 牛顿迭代法。-Numerical Analysis of the C language program, Newton iteration.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:2568
    • 提供者:预告吧
  1. Chap01

    0下载:
  2. 常用的一些数值算法。有二分法,牛顿迭代法,拉格朗日法等等,是数值分析常备算法。-Some commonly used numerical algorithm. There dichotomy, Newton iteration, Lagrangian, etc., is a numerical analysis algorithm standing.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-03
    • 文件大小:42015
    • 提供者:kt
  1. niudundiedai

    0下载:
  2. vc6.0,牛顿迭代法的源代码,数值分析-vc6.0, Newton iteration of the source code, numerical analysis
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:8471
    • 提供者:minminjiang
  1. Newtoniteration

    0下载:
  2. 牛顿迭代法的源程序,貌似还可以 用过了 ,可应用-Newton iteration
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-12
    • 文件大小:532
    • 提供者:hello
  1. Newton_Bisection

    0下载:
  2. 数值计算中的二分法和牛顿迭代法的演示,通过对数值的计算-Numerical calculation of the dichotomy and the Newton iteration of the demonstration, through numerical calculation
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:808
    • 提供者:leo
  1. inviscid_eqution

    2下载:
  2. 求解粘性Burger方程和非粘性Burger方程的各种差分格式,包括BTCS格式的显式计算 BTCS格式的隐式计算 滞后非线性项 向前时间步长线性化 牛顿迭代法线性化 Lax-Wendroff格式 通量分裂格式显试计算 通量分裂格式隐式计算 CN格式隐式计算 等格式。-Solution of viscous Burger equation and non-viscous Burger differential equations of various for
  3. 所属分类:Algorithm

    • 发布日期:2016-10-02
    • 文件大小:7937
    • 提供者:王磊
  1. 423454

    0下载:
  2. 数值分析的实验报告,雅各比和高斯塞代尔迭代法,牛顿及拉格朗日插值法,Triangle.cpp等-Numerical Analysis of the experimental reports, and high-CEDEÑ O Jacoby dayr iterative method, Newton and Lagrange interpolation, Triangle.cpp, etc.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:8217
    • 提供者:冯莹莹
  1. Newton

    0下载:
  2. 这是一个用java高级编程语言编写的程序,能够实现用牛顿迭代法求解某个函数在某个指定区间内的根,方便易用。-Java This is a high-level programming languages used in the preparation of procedures, be able to achieve with Newton iteration to solve a function in a specified range of root and user-friendly.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:732
    • 提供者:asdf
  1. newton

    0下载:
  2. 关于牛顿迭代法以及弦解法的相关程序,实验平台是vc.-Newton iteration on the solution as well as the string of related procedures, the experimental platform is vc.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:714
    • 提供者:王一奇
  1. Bin

    0下载:
  2. 牛顿迭代法求非线性方程的根 非常好用;-Newton iterative method for roots of nonlinear equations very easy to use
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:127500
    • 提供者:侯源君
  1. Formula_Numerical_Analysis

    0下载:
  2. 数值分析中用于求近似值的算法、二分法解方程、变步长梯形求积分的算法。是在Linux下用C++实现的。用G++编译。 配合华中科大的那本著名的“数值分析”。李庆扬编著。 用来交作业很好。 在本压缩包里面包含的是: HalfDevision.d 二分法解方程 LagrgIn.d 拉格朗日差值公式-求近似值 NewtonFwIn.d 牛顿前插公式-求近似值 NewtonItera.d 牛顿迭代法-求近似值 VarStpTrpzoItg.d 变步长梯形积
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:78274
    • 提供者:xichen
  1. fortran

    0下载:
  2. 用迭代法计算数值积分,误差自己控制,用牛顿迭代法实现。-Iterative method with numerical integration, error under their control, using Newton iteration method.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-07
    • 文件大小:878233
    • 提供者:烈文
  1. 12

    0下载:
  2. 牛顿迭代法求非线性方程的一个实根 /** 牛顿迭代法求方程的一个实根 牛顿公式:x(k 1) = x(k) - f(x(k)) / f (x(k)) 迭代函数:Ф(x) = x - f(x) / f (x) 属性:方程求根迭代法 此时的迭代函数必须保证X(k)有极限,即迭代收敛。-牛顿迭代法求非线性方程的一个实根 /** 牛顿迭代法求方程的一个实根 牛顿公式:x(k 1) = x(k)- f(x(k))/f (x
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:21504
    • 提供者:fei jing ming
  1. jgdhghjd

    0下载:
  2. DHRT:对分法搜索方程的实根 ATKN:埃特金迭代法求方程的一个实根 NEWT:牛顿迭代法求方程的一个实根 QRRT:QR方法求实系数多项式方程的全部根 NETN:拟牛顿法求非线性方程组的一组实数解-DHRT: method to search for the real roots of equation ATKN: Aitken iterative method for a real roots of equation NEWT: Newton iteration equat
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:4094
    • 提供者:万相友
  1. newton

    0下载:
  2. 牛顿迭代法求方程的根 数值方法中的算法 包括下山因子-Newton iteration equation for the root of the algorithm for numerical methods, including down factor
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:1004
    • 提供者:永远的罗罗
  1. newton

    0下载:
  2. 用牛顿迭代法求方程 f(x)=x³ -x² -1=0 在x。=1.5附近的一个实根。取§=0.000001,取最大迭代数为60. -With Newton iteration equation for f (x) = x ³-x ² -1 = 0 in x. = 1.5 near the root of a real. Take § = 0.000001, take the largest number of 60 iterations.
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:182050
    • 提供者:零下
  1. NEWDTON

    0下载:
  2. 牛顿迭代法-Newton iteration
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:785
    • 提供者:wangjie
  1. sqrt(x)

    0下载:
  2. 用汇编语言及牛顿迭代法编写的求一个数的平方根的源代码,环境windlx-Using assembly language and the Newton iterative method for the preparation of a number of the square root of the source code, the environment windlx
  3. 所属分类:assembly language

    • 发布日期:2017-03-26
    • 文件大小:1820
    • 提供者:沐夕
  1. chengxu

    0下载:
  2. 常用的单片机子程序库: 目前已有若干版本的子程序库公开发表,它们各有特色。本程序库中的开平方算法为快速逼近算法,它能达到牛顿迭代法同样的精度,而速度加快二十倍左右,超过双字节定点除法的速度。-Single-chip common subroutine library: there are a number of versions of the subroutine library published, they have their own characteristics. Library in
  3. 所属分类:SCM

    • 发布日期:2015-04-17
    • 文件大小:15280
    • 提供者:zhy
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 28 »
搜珍网 www.dssz.com