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

搜索资源列表

  1. NLModule

    0下载:
  2. 求解非线性方程的方法,类容具体,包括说明。使用时直接修改参数。-solving nonlinear equations, Yung specific categories, including descr iptions. When used directly alter the parameters.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:38846
    • 提供者:zhlei
  1. qiufeixianxingfangchengyigeshigendelianfenshifa.ra

    0下载:
  2. 1.功能 利用连分式法求非线性方程f(x)=0的一个实根(C语言) 2.参数说明 double *x : 指向迭代初值,返回时指向迭代终值 double eps : 控制精度要求 double (*f)() : 指向计算f(x)值的函数名(由用户自编) int pqrt() : 函数返回迭代次数 3.文件说明 pqrt.c为函数程序 pqrt0.c为主函数程序-1. Continued Fractions functional method usi
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1666
    • 提供者:罗坤
  1. qiufeixianxingfangchengzuzuixiaoerchengjiedeguangy

    2下载:
  2. 1.功能 利用广义逆求解无约束条件下的优化问题(C语言) 2.参数说明 int m : 非线性方程组中方程个数 int n : 非线性方程组中未知数个数 double eps1 : 控制最小二乘解的精度要求 double eps2 : 用于奇异值分解中的控制精度要求 double x[n] : 存放非线性方程组解的初始近似值X(0),要求各分量不全为0 int ka : Ka=max{m,n}+1 void (*f)() : 指向计算非线性方程组中各方程
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:2396
    • 提供者:罗坤
  1. Modified Trust region.zip

    0下载:
  2. 求解非线性方程!组,可以解决参数识别问题
  3. 所属分类:数学计算/工程计算

    • 发布日期:2010-11-25
    • 文件大小:6266
    • 提供者:ljwang168
  1. 数学优化分析综合工具软件包

    6下载:
  2. 1stOpt 是七维高科有限公司(7D-Soft High Technology Inc.)独立开发, 拥有完全自主知识产权的一套数学优化分析综合工具软件包。在非线性回归,曲线拟合,非线性复杂模型参数估算求解,线性/非线性规划等领域首屈一指; 1stOpt 应用范围 1) 模型自动优化率定 2) 参数估算 3) 任意模型公式线性,非线性拟合,回归 4) 非线性连立方程组求解 5) 任意维函数,隐函数极值求解 6) 隐函数根求解,作图,求极值 7) 线
  3. 所属分类:数学计算/工程计算

    • 发布日期:2016-01-23
    • 文件大小:7421107
    • 提供者:zhangqi
  1. winpp0

    2下载:
  2. 用来求解非线性系统中分岔,混沌,周期,准周期等动力学,可以求数值解,也可画图,只要知道系统模型,可以根据需要自由修改参数,软件带有使用说明,简单易懂-Used to solve nonlinear systems in the bifurcation, chaos, periodic, quasi-periodic dynamics, etc., you can seek numerical solutions, but also drawing, as long as know the sys
  3. 所属分类:Algorithm

    • 发布日期:2015-03-29
    • 文件大小:596698
    • 提供者:weiduqu
  1. levmar-2.3

    0下载:
  2. 最新的Levenberg Marquardt 算法。用于非线性最小二乘问题的参数估计和优化!-Latest Levenberg Marquardt algorithm. Nonlinear least squares problem for parameter estimation and optimization!
  3. 所属分类:Algorithm

    • 发布日期:2017-01-25
    • 文件大小:67124
    • 提供者:zhangxsh
  1. N_Ralgorithm

    0下载:
  2. 一个C++builder 编写的牛顿杰弗逊算法 用来计算非线性的一些东西,我当时是用于计算电路上的参数-A C++ builder, prepared by Jefferson Newton algorithm used to calculate the nonlinear something I was used to calculate the circuit parameters
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:367263
    • 提供者:diode
  1. OpenTSTOOL_win

    0下载:
  2. 时间系列非线线性处理工具包,可以计算多数非线性参数,例如:李亚谱诺夫指数,相关维等-nonlinear parameter toolkit
  3. 所属分类:Algorithm

    • 发布日期:2017-05-24
    • 文件大小:3435417
    • 提供者:zhang hui
  1. fenchatu

    0下载:
  2. 利用非线性动力学的知识研究混沌行为,可以通过画运动的分岔图来研究参数变化对运动的影响,本程序以洛伦兹力为例子实现了分岔图的绘制-Knowledge of the nonlinear dynamics of chaotic behavior, can 通过 Painting Movement of the bifurcation diagram to study the impact of parameters on the movement, this program in order to a
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:1979
    • 提供者:赵长生
  1. aitkenroot

    0下载:
  2. 埃特金求解C语言代码 //函数名:aitkenroot //功能描述:求出[a,b]区间内的非线性方程f(x)的一个实根 //输入参数:*x0(指向迭代初值和终值的指针) // f(迭代函数) // eps(精度要求) // max(最大迭代次数) //返回值:0(迭代失败),1(迭代成功)-Aitken Solution C language code// function name: aitkenroot// Function Descr iption: Fin
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:659
    • 提供者:穆欢
  1. DiffParam1

    1下载:
  2. 用参数微分法中的欧拉法求非线性方程组的一组解-Differential method with the parameters of Euler' s Method in a set of nonlinear equations solution
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1048
    • 提供者:
  1. MK

    0下载:
  2. 用于非线性时间序列的滑动突变检验,非参数方法-detection abrupt MK
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:695
    • 提供者:qian
  1. MTT

    0下载:
  2. 用于非线性时间序列的滑动T检验,用于参数类的突变检验-detection MTT
  3. 所属分类:Algorithm

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

    0下载:
  2. 共轭梯度法(Conjugate Gradient)是介于最速下降法与牛顿法之间的一个方法,它仅需利用一阶导数信息,但克服了最速下降法收敛慢的缺点,又避免了牛顿法需要存储和计算Hesse矩阵并求逆的缺点,共轭梯度法不仅是解决大型线性方程组最有用的方法之一,也是解大型非线性最优化最有效的算法之一。 在各种优化算法中,共轭梯度法是非常重要的一种。其优点是所需存储量小,具有步收敛性,稳定性高,而且不需要任何外来参数。-Conjugate Gradient method (Conjugate Gradie
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:516
    • 提供者:兰中周
  1. Newton-Raphson-method

    0下载:
  2. fortran90/95格式,方便科学计算中调用,Newton-Raphson,可用来寻找线性/非线性方程f(x)=0的数值解。标准的数学表达式f(x)表示f是变量x的函数,其通常的表达形式为f(x,a,b,...)=0,f被定义为多于一个变量的函数。在这种情况下,Newton-Raphson算法试图把x以外的变量固定并作为参数,而寻找关于变量x的数值解。-fortran90/95 format, convenience called scientific computing, Newton-R
  3. 所属分类:Algorithm

    • 发布日期:2017-11-12
    • 文件大小:2563
    • 提供者:cardinal
  1. NLJ-optimization-algorithm

    0下载:
  2. 用于系统辨识的NLJ算法。适用于状态空间表示的非线性系统,用于系统参数的辨识。-NLJ algorithm for system identification. Applicable to non-linear state space representation used to estimate the system parameters.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-25
    • 文件大小:13121
    • 提供者:董毅
  1. Nonlinear-regression

    0下载:
  2. 有一类模型,其回归参数不是线性的,也不能通过转换的方法将其变为线性的参数。这类模型称为非线性回归模型。在许多实际问题中,回归函数往往是较复杂的非线性函数。非线性函数的求解一般可分为将非线性变换成线性和不能变换成线性两大类。这里主要讨论可以变换为线性方程的非线性问题。-There is a class model, the regression parameters is not linear, it can not be converted into a linear method parame
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:5579
    • 提供者:黄毅
  1. liuyang

    0下载:
  2. 基于分段非线性权重值的Pso算法,是本科毕设的题目,利用贝叶斯原理估计混合logit模型的参数。- Based on piecewise nonlinear weight value Pso algorithm, The title of the commercial is undergraduate course you Bayesian parameter estimation principle mixed logit model.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:5750
    • 提供者:崔涛海
  1. pouman

    0下载:
  2. 利用贝叶斯原理估计混合logit模型的参数,基于分段非线性权重值的Pso算法,与理论分析结果相比。- Bayesian parameter estimation principle mixed logit model, Based on piecewise nonlinear weight value Pso algorithm, Compared with the results of theoretical analysis.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:8194
    • 提供者:强更
« 12 »
搜珍网 www.dssz.com