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

搜索资源列表

  1. bisectVC

    0下载:
  2. 用二分法求解非线性方程,只要用户输入所求的方程,方程的根就很快被程序计算出,方便而且还很快捷.对于数值分析这样的课程,将算法通过程序实现,具有很好的教学价值-dichotomy used to solve nonlinear equations, as long as import demand equation, the equation roots soon be worked out procedures to facilitate and very fast. Numerical ana
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:73859
    • 提供者:sunnypill
  1. 1

    0下载:
  2. ACM经典算法的源程序代码:埃特肯,杜氏分解法,二分法-ACM classical algorithm source code:埃特肯, Dunaliella decomposition method, the dichotomy
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2786
    • 提供者:hjx
  1. mainc

    1下载:
  2. 在c++环境下的计算方法程序源代码,包含LU分解,迭代法,二分法,复合梯形公式,简单迭代法,龙贝格公式,最小二乘法拟合,四阶龙格库塔公式,辛普森公式和主元消去法-C++ environment in the calculation of the next source code, including LU decomposition, iterative method, dichotomy, composite trapezoidal formula, a simple iterative me
  3. 所属分类:Algorithm

    • 发布日期:2017-05-11
    • 文件大小:2718461
    • 提供者:shz
  1. Citerativenumerical

    0下载:
  2. 主要是二分法,分段线性插值 简单迭代 牛顿迭代等常用的数值计算的程序。-Mainly dichotomy, a simple iterative piecewise linear interpolation commonly used, such as Newton s iterative numerical procedure.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:8731
    • 提供者:宇航
  1. erfenfa

    0下载:
  2. C语言,数据结构。通过二分法求解方程的根值-C language data structures. Through the dichotomy solving the root of the value equation. . .
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:787
    • 提供者:lh
  1. NormaluseAlgorithm

    0下载:
  2. 常用的一些算法例子,有二分法,牛顿法,变步长法,最小二乘法等-Some examples of commonly used algorithms, there is dichotomy, Newton method, variable step-size method, least squares, etc.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:8126
    • 提供者:刘川
  1. erfen

    0下载:
  2. 二分法求解非线性方程的一个根,可以计算出一般非线性方程的近似解-Dichotomy for solving nonlinear equations a root, you can calculate the approximate solution of general nonlinear equations
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:3019
    • 提供者:annie
  1. NumericalAlgorithms

    0下载:
  2. 各种数值算法,包括,艾特肯,杜氏分解法,二分法,分段线性插值,复合梯形法,复合辛普森,高斯消去法,列主元素消去法,龙贝格算法,雅克比迭代等等。-Numerical Algorithms,includeing Aitken,Duchenne decomposition,Dichotomy,Piecewise linear interpolation,Composite trapezoidal rule,Composite Simpson,Gaussian elimination,Out the m
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:3475
    • 提供者:A1042yang
  1. DichotomyModel

    0下载:
  2. 二分法 数学方面: 一般地,对于函数f(x),如果存在实数c,当x=c是f(c)=0,那么把x=c叫做函数f(x)的零点。 解方程即要求f(x)的所有零点。 先找到a、b,使f(a),f(b)异号,说明在区间(a,b)内一定有零点,然后求f[(a+b)/2], 现在假设f(a)<0,f(b)>0,a<b ①如果f[(a+b)/2]=0,该点就是零点, 如果f[(a+b)/2]<0,则在区间((a+b)/2,b)
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-03
    • 文件大小:1330
    • 提供者:kelly
  1. a_n

    0下载:
  2. 用二分法求解a的n次方,其中用到了迭代法。-Solving a dichotomy with the n-th power, which uses an iterative method.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-04
    • 文件大小:223415
    • 提供者:levin
  1. Newtonfangchengqiujie

    0下载:
  2. 运用数学二分法、牛顿迭代法方程求根,程序运行通过,满足效果-Dichotomy, Newton iteration equation Roots
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1505
    • 提供者:zjjjjj
  1. jiefangcheng

    0下载:
  2. 可以用二分法来解非线性方程解方程,简单的程序代码,虽简单,但很实用-Dichotomy can be used for solving nonlinear equations equation, a simple code, though simple, but very practical
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:602
    • 提供者:刘德莉
  1. 3

    0下载:
  2. 实现二分法求解方程。编写并使用以下函数: double SolveRoot(double(*pf)(double x),double a,double b,int n) 这里,pf指向一个函数f,f用来定义要求解的方程f(x)=0,a和b是未知解x的上下界(即a<=x<=b), n是循环次数。例如,如果f(x)=x*x-2,则SolveRoot (f,1,2,100)将返回1.414213562373095, 即方程为x*x=2的解。二分法的原理是反复地把区间分为两个
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1166080
    • 提供者:闻悦
  1. erfenfa

    0下载:
  2. er二分法 er二分法 er二分法 er二分法 er二分法-er dichotomy er dichotomy er dichotomy er dichotomy er dichotomy er dichotomy dichotomy er dichotomy er dichotomy er
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:726
    • 提供者:嗷嗷嗷
  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. goldensectiondichotomy

    0下载:
  2. 一个黄金分割法,可以运行,不过只是最终结果,想要中间过程就得自己想办法了,我也不会了。两个二分法可以-A golden section method, you can run, but only the final result, like the middle of the process would have their own ways, and I will not. 2 dichotomy can be
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:1515
    • 提供者:马庆昌
  1. Bisection_method

    2下载:
  2. 二分法求解任意代数方程,比如超越方程等等,最原始的方法,但是最可靠。 本文档是Mathematica的求解代码。用户可以修改本代码,提取适合自己的核心代码。-Dichotomy solving any algebraic equation, such as the transcendental equation and so on, the most primitive methods, but the most reliable. This document is the solution
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:1263
    • 提供者:he
  1. numerus

    0下载:
  2. 数值算法的相关算法实现,包括单点弦法迭代法 牛顿迭代法 二分法 拉格郞日插值 牛顿法插值等算法-Numerical algorithm related algorithms, including the single-point chord iteration Newton' s iteration method dichotomy Rugby Lang on Newton interpolation algorithm for interpolation
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:74544
    • 提供者:
  1. cut_sample

    0下载:
  2. 使用二分法对样本集进行剪辑,剪辑法的思想,就是将样本集分成训练集与考试集, 利用训练集样本对考试集的样本进行分类(使用近邻法),如果考试集中某个样本分类错误的话,将这个样本删除。在该函数中,使用最近邻法,只进行一次剪辑(遍历完考试集中的样本以后退出)。还有一种重复剪辑法(适用于样本比较多的情况),把样本随机分为多个样本集,将相邻的两个样本前一个作为考试集,后一个作为训练集,调用二分剪辑。所有的样本子集剪辑完毕以后,在递归调用,直到没有样本被剪辑掉,没得讲,重复剪辑的效果肯定好一些。 -Th
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:1114
    • 提供者:shihao
  1. erfenfa

    0下载:
  2. 二分法的基本思想是通过计算隔根区间的中点,逐步缩小隔根区间,从而可以得到方程的近似值-The basic idea of dichotomy is separated by calculating the midpoint of the root zone, gradually narrowing the range across the root, so you can get an approximation of equation
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-02
    • 文件大小:1068
    • 提供者:小马
« 1 2 3 4 56 7 8 9 10 ... 13 »
搜珍网 www.dssz.com