CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 牛顿法求解非线性方程

搜索资源列表

  1. Newton

    1下载:
  2. 牛顿迭代法求解非线性方程,已在TC2.0中编译通过-Newton iterative method for solving nonlinear equations, in which compile WITH TC 2.0
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:860
    • 提供者:王国栋
  1. 牛顿下山法求解非线性方程组

    7下载:
  2. fortran程序,绝对好用,我给你初始的设为变量五的方程组,迭代主值也给了,自己改就行了,附送夸克物态方程程序
  3. 所属分类:源码下载

    • 发布日期:2011-12-20
    • 文件大小:26000
    • 提供者:kyoisiori
  1. netn.拟牛顿法求非线性方程

    0下载:
  2. 拟牛顿法求非线性方程,并以一组三元二次方程组为例进行求解。,Quasi-Newton method for nonlinear equations, and a group of ternary quadratic equation group is solved as an example.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2017-03-25
    • 文件大小:912
    • 提供者:953427
  1. EQU_SOLVE

    1下载:
  2. 完整的以最速下降法,牛顿迭代法,二分法求解非线性方程的Matlab程序源代码,含GUI界面,简洁明了,可对每种算法绘制收敛曲线,计算求解精度。-the completely matlab source code for equation solving by adapting steepest descent method,newton method, binary divided method,graphics user interface applied,simply and explici
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:16990
    • 提供者:张宏欣
  1. nonlinear_equations_solve

    1下载:
  2. 包括各种非线性方程的MATLAB求解算法,如拟牛顿法,数值延拓法,高斯牛顿法-Include a variety of nonlinear equations MATLAB algorithm, such as the quasi-Newton method, numerical continuation method, Gauss-Newton method
  3. 所属分类:Bio-Recognize

    • 发布日期:2017-04-01
    • 文件大小:11247
    • 提供者:付和平
  1. AlgorithmsforNonlinearEquations

    1下载:
  2. 非线性方程组求解的经典算法,例如牛顿法,两点割线法,最快下降法-Solving nonlinear equations of classical algorithms, such as Newton method,bi-section method,the fastest descent method, etc.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:12092
    • 提供者:Bingo
  1. interpolation

    0下载:
  2. 给出插值算子的算法,牛顿法求解非线性方程,欢迎大家给出意见。-Interpolation operator is given algorithm, Newton method for solving nonlinear equations, welcome to give their views.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1112
    • 提供者:王海
  1. mulNewtonSOR

    0下载:
  2. 该程序是牛顿SOR法求解非线性方程,绝对可以,绝对有效。-The program is Newton SOR method for solving nonlinear equations, it is absolutely, to be effective.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-30
    • 文件大小:593
    • 提供者:佳音
  1. Newton

    0下载:
  2. 牛顿拉夫逊法-求解非线性方程的一般常用算法,在许多工程中得以应用-Newton Raphson method- commonly used for solving nonlinear equations algorithm was applied in many engineering
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:606
    • 提供者:nanrui
  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. 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. NewtonRoot

    0下载:
  2. 牛顿法求解非线性方程Matlab编程实现-Newton method for solving nonlinear equations Matlab programming
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:725
    • 提供者:dugumengyouzi
  1. NewtonDown

    0下载:
  2. 牛顿下山法求解非线性方程Matlab编程实现-Newton descent method for solving nonlinear equations Matlab programming
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:752
    • 提供者:dugumengyouzi
  1. xmnewt

    0下载:
  2. 本程序为牛顿法求解非线性常微分方程的例程。采用fortran语言-procedures for the newt method for solving nonlinear boundary value problems . Using FORTRAN language.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:525529
    • 提供者:笨笨
  1. 牛顿法迭代

    0下载:
  2. function main() clc; clear all; f = @(x)log(x+sin(x)); % 测试函数 df = @(x)(1+cos(x))/(x+sin(x)); % 导数函数 x0 = 0.1; % 迭代初值 x = TestNewton(f, df, x0) % 牛顿法求解 function x = TestNewton(fname, dfname, x0, e, N) % 用途:Newton迭代法解非线性方程f(x)=0 % fname和df
  3. 所属分类:matlab例程

  1. niudunfa

    0下载:
  2. 数值计算法,牛顿法求解非线性方程,适用于VC6.0-Numerical calculation method, Newton' s method for solving nonlinear equations for VC6.0
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:277601
    • 提供者:清晨玉墨寒
  1. niudunfa

    0下载:
  2. 这是一个牛顿法求解非线性方程的C++源码。-This is a Newton method for solving nonlinear equations C++ source.
  3. 所属分类:mathematica

    • 发布日期:2017-04-30
    • 文件大小:256077
    • 提供者:刘红宇
  1. newton-feixianxingfangcheng

    0下载:
  2. MATLAB牛顿法求解非线性方程组的源程序代码(MATLAB Newton method for solving nonlinear equations source code)
  3. 所属分类:其他

    • 发布日期:2017-12-25
    • 文件大小:1024
    • 提供者:木手冈
  1. Fortran Newton法求解非线性方程组

    2下载:
  2. 通过Fortran语言,利用牛顿方程迭代来求解非线性方程组,可设置为二元或多元(Through the Fortran language, the Newton equation iteration is used to solve the nonlinear equations, which can be set to two yuan or multivariate.)
  3. 所属分类:文章/文档

    • 发布日期:2018-04-29
    • 文件大小:1024
    • 提供者:wagzijian
  1. 方程求根

    1下载:
  2. 包含了牛顿迭代法解非线性方程以及非线性方程组求解,多项式求根的MATLAB的M文件(Newton's iterative method is used to solve nonlinear equations and solve nonlinear equations. The M of MATLAB is the root of polynomial.)
  3. 所属分类:matlab例程

    • 发布日期:2019-12-31
    • 文件大小:9216
    • 提供者:zjujie
« 12 3 »
搜珍网 www.dssz.com