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

搜索资源列表

  1. chazhinihe2123

    0下载:
  2. matlab 插值与拟合的几个程序 牛顿迭代法 数值分析与mtlab源码 还有其他的一些例子-Matlab interpolation and fitting of several procedures Newton iterative numerical analysis and also its source mtlab Some of his examples
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:139118
    • 提供者:haipper
  1. ji

    0下载:
  2. 针对小流域设计洪水计算中,采用推理公式求解洪峰流量Qm及汇流时间τ的方法繁琐,查算精度较低等问题,提出用牛顿迭代法求解,该方法较原图解试算法收敛快,迭代次数少,计算速度快,精度可靠。计算实例表明,用简单迭代法与牛顿迭代法计算设计洪峰流量,其结果与图解试算法完全一致。
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:98691
    • 提供者:dfsa
  1. 非线性方程求根

    0下载:
  2. 非线性方程求根 包括二分法、牛顿迭代法的matlab程序。-Root including nonlinear equations dichotomy of Newton iteration of Matlab procedures.
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:28057
    • 提供者:悟凡
  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. solve

    0下载:
  2. 用牛顿法解方程组,迭代法解方程组和求矩阵最大特征值-Newton Method with equations, iterative methods for solution of matrix equations and the largest eigenvalue
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:2172
    • 提供者:张志敏
  1. lmz

    0下载:
  2. 里米兹算法的MATLAB源程序,其中交错点组的筛选运用了牛顿迭代法-Meads algorithm in MATLAB source code, which staggered the screening point group used the Newton iteration
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:1716
    • 提供者:李雨涵
  1. Newton-matlab

    1下载:
  2. Newton牛顿迭代法解非线性方程,这个程序挺不错的,分享给大家-Newton-matlab
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:580
    • 提供者:gake
  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. 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. feixianxing

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

    • 发布日期:2016-09-09
    • 文件大小:12092
    • 提供者:舞蛳
  1. MATLAB

    1下载:
  2. 这个是逐步搜索法的MATLAB主程序,牛顿法,不动点迭代法-This is a step by step search method MATLAB main program, compiled his free time, by running the verification.
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:1599
    • 提供者:李星
  1. djhsajdh

    0下载:
  2. Gauss 消元法 — 不选主元 Gauss 消元法 — 列选主元. 插值法 lagrange .cpp 插值法 lagrange .cpp 二分法.txt 二分法和简单迭代法以及埃特金.txt 复化辛卜生公式.txt快速弦截法 gauss-seidel选代.txt牛顿迭代法.txt-Gauss elimination method- do not choose the principal component Gauss elimination method- principal c
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:7536
    • 提供者:贾斌
  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. 方程解法

    1下载:
  2. 基于matlab的不动点迭代法、二分法以及牛顿法求解方程,进一步优化了计算步骤。(Fixed point iterative method for solving equations based on Matlab)
  3. 所属分类:matlab例程

  1. Newton

    0下载:
  2. 回溯先搜索法梯度下降法与牛顿迭代算法结合的MATLAB例程(Backtracking first search method, gradient descent method and Newton iterative algorithm combined with MATLAB routines)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-25
    • 文件大小:6035456
    • 提供者:carpinter
  1. [原创]模拟退火算法论文集

    0下载:
  2. 牛顿迭代求根遗传退火算法的APP打包,十分实用,适合新手(The Numerical Phenomenon in Newton's Iterative Method for Solving Complex Polynomials)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-29
    • 文件大小:1037312
    • 提供者:湛湛青天
  1. 速度模型的牛顿迭代法求解代码

    0下载:
  2. 速 度 模 型 的 牛 顿 迭 代 法 求 解(velocity model solv Newton iteration method)
  3. 所属分类:matlab例程

    • 发布日期:
    • 文件大小:11264
    • 提供者:咸鱼1
  1. Lfnewton

    0下载:
  2. 牛顿迭代打独立思考的卡了是单卡手机打开链接打开了手机(lfnewtonThis program obtains th Bus Admittance Matrix for power flow solution)
  3. 所属分类:matlab例程

    • 发布日期:2018-05-02
    • 文件大小:2048
    • 提供者:小仲
  1. 牛顿迭代法解2次方程matlab

    1下载:
  2. 牛顿迭代法解2次线性方程,使用matlab程序解决
  3. 所属分类:matlab例程

  1. Newton.py

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

    • 发布日期:2020-07-03
    • 文件大小:1024
    • 提供者:Titan ye
« 1 23 4 5 6 7 »
搜珍网 www.dssz.com