搜索资源列表
-
0下载:
解方程,给出一个连续函数接f(x)=0的值,前提是给一个附近的值- FIXED-POINT ALGORITHM 2.2
To find a solution to p = g(p) given an
initial approximation p0
INPUT: initial approximation p0 tolerance TOL
maximum number of iterations NO.
-
-
0下载:
采用牛顿迭代法编写的定点化的开方运算,定点化的精度为Q15-Newton iterative method used to prepare the prescr iption of the fixed-point computation, the accuracy of fixed-point Q15
-
-
2下载:
采用泰勒级数展开法编写的定点化的开方运算,定点化精度为Q15-Taylor series expansion method used to prepare the prescr iption of the fixed-point computation, fixed-point precision for Q15
-
-
0下载:
典型数值计算方法。包括:经典四阶龙格库塔法、高斯列主元法、牛顿法、龙贝格、三次样条插值算法、M次多项式曲线拟合、二分法、不动点法、霍纳法、牛顿-拉弗森迭代等十项典型算法的算法流程及C源代码和例子。-Typical numerical calculation. Include: classical fourth order Runge-Kutta method, Gauss main-element method, Newton method, Romberg, cubic spline inte
-
-
0下载:
这是基于负熵方法的音频信号分离的固定点独立分量分析方法的Matlab程序。-This is based on negative entropy method of audio signal separation of fixed-point independent component analysis of the Matlab program.
-
-
0下载:
Chapter 2. The Solution of Nonlinear Equations f(x) = 0
Algorithm 2.1 Fixed Point Iteration
Algorithm 2.2 Bisection Method
Algorithm 2.3 False position or Regula Falsi Method
Algorithm 2.4 Approximate Location of Roots
Algorithm 2.5
-
-
0下载:
fixed point method of matlab
-
-
0下载:
状态反馈控制混沌系统
利用一种简单的线性状态反馈方法控制混沌运动 ,引导混沌系统稳定到失稳的平衡点或
周期轨道上 ,用劳斯2胡尔维茨稳定判据判定受控系统在平衡点处参数的取值范围 ,同时使用广义
Hamilton 系统理论的 Melnikov 方法分析受控系统的周期解. 通过对典型的混沌系统进行数值仿
真 ,证实了该控制方法的有效性.- A Linear state feedback control technique is used to guide the typical ch
-
-
1下载:
用MATLAB实现非线性方程的数值解法。主要有不动点迭代法,牛顿法,割线法和对称秩法的MATLAB源码。-Numerical solution of nonlinear equations with MATLAB. Fixed point iteration method, Newton, secant, and the symmetry rank of the MATLAB source.
-
-
4下载:
利用C语言实现最小二乘法对给定点指数函数曲线拟合-Using C language to achieve the least squares method to the fixed-point exponential function curve fitting
-
-
0下载:
主要提供了数值分析中用牛顿法,Fixed-Point Iteration method, Steffensen’s method求解方程的源代码。-The main provider of numerical analysis using Newton' s method, the Fixed-Point Iteration method, Steffensen' s method for solving the equation of the source code.
-
-
0下载:
给定m个节点的函数值,分别利用牛顿插值法和拉格朗日插值法,计算固定点处的函数值-Function value to the set of m nodes, Newton interpolation and Lagrange interpolation method to calculate the function value of the fixed point
-
-
0下载:
一个求解非线性方程根的算法的集合,包括牛顿迭代法,二分法,不动点迭代法等方法。-A collection of algorithms for solving nonlinear equations root, including the the Newton iteration dichotomy, fixed point iteration method.
-
-
0下载:
不动点迭代法求解非线性方程,含结果跟m文件,亲测可用。-Fixed point iteration method for solving nonlinear equations with m file containing the results, the pro-test is available.
-
-
0下载:
本程序为[MATLAB语言常用算法程序集].(龚纯).清晰版书中求解非线性方程组的一种方法:不定点迭代法-This program is [MATLAB language commonly used algorithm for assembly] (Gong pure) clear version of the book method for solving nonlinear equations: fixed point iteration method
-
-
0下载:
用于方程求根的MATLAB程序。其中包括贝努利法求按模最小实根
用二分法求方程的一个根
用黄金分割法求方程的一个根
用不动点迭代法求方程的一个根
等-For solving equation MATLAB program. Which includes the minimum real root of Bernoulli Fa
A root of a equation with dichotomy
A root of the equation by golden sect
-
-
0下载:
图论是数学的一个重要的分支,它以图为研究对象,研究定点和变组成的图形的数学理论和方法,而且现在图论在计算机科学中也扮演着及其重要的角色。宽度优先算法能解决图论中的许多问题,其中之一就是寻找图中所有连接元件。-Number theory is an important branch of mathematics, it Pictured research object, fixed point math theory and method of varying the composition an
-
-
1下载:
传统的幅度约束波束形成器是一个非凸问题,需将原始模型化为线性规划进行间接求解。该文针对均匀线阵提出一种相位响应固定幅度响应约束(PFMC)的稳健波束形成方法。利用权矢量逆序列对应的传递函数与阵列响
应函数只差一个相位因子这一性质,将阵列响应的相位设置为固定的线性相位,仅对阵列响应的实数幅度进行约束,从而得到一个凸的代价函数,最优权矢量可以利用内点法求出。-The conventional magnitude constraints beamformer is a non-convex iss
-
-
0下载:
牛顿迭代法,与传统意义上的迭代法类似,只是将f(x)进行泰勒级数展开,只保留前两项,然后进行迭代。其迭代方程为x_(k+1)=x_k-(f(x_k))/(f^' (x_k))。
从编程上来讲,以上述方程对固定范围的复数域中的每个点作为初始点进行迭代,每个点都会收敛到该方程的一个解,对不同的解涂抹不同的颜色,就会看出其收敛范围。如果想得到其精确解所在位置,可通过到达给定精度的迭代次数进行判断,因为该点越接近精确解,其迭代速度越快。以下对老师提供的程序和自己写的程序进行一下对比,选用方程为:y=x
-
-
3下载:
计算给定点列的曲线拟合最小二乘法得到的函数(The function of least square method for curve fitting of fixed point column)
-