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

搜索资源列表

  1. Work3

    1下载:
  2. 北航数值分析大作业第三题:牛顿迭代法求z=f(x,y)-Numerical analysis of a large operation Beihang third question: Newton iteration method by z = f (x, y)
  3. 所属分类:Algorithm

    • 发布日期:2014-06-12
    • 文件大小:11723
    • 提供者:邹洪斌
  1. shujujiegou

    0下载:
  2. 用C++做的数据结构课程设计,内含三个项目,项目一 牛顿迭代法的数据结构,项目二 一元多项式计算,项目三 民航订票系统-Done using C++ data structures curriculum design, containing three items, the project of a Newton iteration of the data structure, project 21 yuan polynomial terms, the three civil aviation
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:1166815
    • 提供者:tdpeng
  1. homework2

    1下载:
  2. 牛顿迭代法解非线性双曲型方程(北航研究生数值分析程序)-Newton iteration method for nonlinear hyperbolic equations (Beihang University Graduate numerical analysis program)
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:405726
    • 提供者:clivia
  1. NetonLiterator

    0下载:
  2. 牛顿迭代法求解非线性代数方程组的主要思想是将非线性函数线性化-Newton iteration method for solving nonlinear algebraic equations nonlinear function of the main idea is to linear
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:24595
    • 提供者:shasha
  1. niudunjiefangcheng

    0下载:
  2. 牛顿迭代法解高次方程,VC++6.0编译通过-Newton Iteration equation of higher, VC++6.0 compile
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:12021
    • 提供者:楠楠
  1. newtonnonlinearequations

    0下载:
  2. 一个基于牛顿迭代法解非线性方程组的C语言程序-A Newton-based iteration method for nonlinear equations of C language program
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:171963
    • 提供者:Bill
  1. NEWTON

    0下载:
  2. 用牛顿迭代法实现实现数值计算方法,用来求解方程的根。-Achieved with the Newton iterative method to achieve numerical method used to solve the roots of the equation.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:7901
    • 提供者:双鱼座
  1. NewtonIterative

    0下载:
  2. 牛顿迭代法求解方程,给定计算初值和程序运行终止条件,根据读入的方程次数以及方程系数,反复计算求出方程的解-Newton used for questing function iteratively
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:71395
    • 提供者:刘翘楚
  1. niudundiedai

    0下载:
  2. 牛顿迭代,用牛顿迭代法计算,展示牛顿迭代法的运算-niudundiedai
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:271204
    • 提供者:贺国睿
  1. a

    0下载:
  2. 运用牛顿迭代法解非线性方程并介绍如何运用计算机来运行结果-Using Newton iteration method for solving nonlinear equations and describes how to use the computer to run results
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:226054
    • 提供者:陈龙
  1. Newton

    0下载:
  2. 本程序为:用牛顿迭代法求解非线性方程2*(x^3)-4*(x^2)+3x-6=0在1.5附近的根的具体程序。-This program is: The Newton iteration method for solving nonlinear equations 2* (x ^ 3)-4* (x ^ 2)+3 x-6 = 0 near the roots at 1.5 specific procedures.
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:583
    • 提供者:zhangjian
  1. nonlinear-equation

    1下载:
  2. mulStablePoint 用不动点迭代法求非线性方程组的一个根 mulNewton 用牛顿法法求非线性方程组的一个根 mulDiscNewton 用离散牛顿法法求非线性方程组的一个根 mulMix 用牛顿-雅可比迭代法求非线性方程组的一个根 mulNewtonSOR 用牛顿-SOR迭代法求非线性方程组的一个根 mulDNewton 用牛顿下山法求非线性方程组的一个根 mulGXF1 用两点割线法的第一种形式求非线性方程组的一个根 mulGXF2 用两点割线法
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:11028
    • 提供者:汪张扬
  1. 2

    0下载:
  2. 牛顿迭代法及其二分法的实验编程,适合初学者使用。-Newton iteration method and its experimental programming dichotomy, suitable for beginners.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:602
    • 提供者:qqq
  1. PiCalculator

    0下载:
  2. 这个算法是平方收敛的(每次迭代有效位数增加一倍), 这样要求到Q位有效数字,就至少要log2Q+1次迭代 显然,这种计算是要高精度表示的, 我所用的算法就是普通的高精度加减乘除 加减是O(n)的,时间花费很少。 乘除是O(n2)的,主要的时间花费都在这上面。 而由这个算法中可以看到,bn的计算需要开根号。 这里有两种开根号的办法: ①用初中教我们的方法,每次开两位根号,用除法减掉, 这样所需时间为n2·n/2=O(n3),不可忍受! ②用牛顿迭
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:45068
    • 提供者:joyeep
  1. fractal

    0下载:
  2. 基于opencv实现的分形几何牛顿迭代法的混沌情况的实现,编程环境vs2008-fractal implemented under the environment of vs2008 using the opencv1.0 library
  3. 所属分类:Fractal program

    • 发布日期:2017-04-09
    • 文件大小:1118170
    • 提供者:Jason
  1. 1

    0下载:
  2. 这是学c很基础数学算法,叫做牛顿迭代法,适合初学者-This is the very basis of science c mathematical algorithm, called the Newton iterative method, suitable for beginners
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:1554
    • 提供者:宾语
  1. Inc

    0下载:
  2. 采用牛顿迭代法求平方根,直接向上取整,获得相应的值-Newton Iterative Method for the rounded square root
  3. 所属分类:assembly language

    • 发布日期:2017-04-05
    • 文件大小:1180
    • 提供者:anndaming
  1. mulSimNewton

    1下载:
  2. MATLAB用于非线性方程组的求解问题,用的方法是牛顿迭代法-the solution of nonlinear functions
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:529
    • 提供者:zhang xiao ai
  1. third

    0下载:
  2. 全选主元高斯消去法解线性方程组,牛顿迭代法求非线性方程组-Full pivoting Gaussian elimination method for solving linear equations, Newton iterative method for solving nonlinear equations
  3. 所属分类:Algorithm

    • 发布日期:2017-03-31
    • 文件大小:1501
    • 提供者:Dennis
  1. algorithm-source-code

    0下载:
  2. 二分法、复化辛卜生公式、拉格郎日插值多项式、牛顿值多项式、牛顿迭代法等算法源代码-algorithm source code
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:9020
    • 提供者:李昌杰
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 28 »
搜珍网 www.dssz.com