搜索资源列表
托伯利兹型线性代数方程组的递推算法
- 有用的哦,要好好看一下。而且比较难找到的算法-useful oh, what better look good. , And more difficult to find the algorithm
递推关系的建立及在信息学竞赛中的应用
- 递推关系的建立及在信息学竞赛中的应用 欢迎下载ginger547的算法资料-recurrence relations and the establishment of the Information Science Contest welcome to download the application of the algorithm information ginger547
递推最小二乘估计算法
- 对于输入、输出数据较多的情况下,一次性完成的最小二乘估计算法计算量很大,速度降低而且有可能出现病态矩阵的情况,递推的最小二乘估计算法解决了上述问题。
卡尔曼滤波递推算法
- 卡尔曼滤波递推算法
托伯利兹型线性代数方程组的递推算法
- 有用的哦,要好好看一下。而且比较难找到的算法-useful oh, what better look good. , And more difficult to find the algorithm
guji
- 系统辨识中,递推最小二乘估计(RLS)是辨识模型阶次的一个重要的算法。该程序通过实现该算法,得到模型阶次的估计值以及相关参数值。-system identification, recursive least squares estimation (RLS) identification model is of the order of an important algorithm. The program through the rea
递推关系的建立及在信息学竞赛中的应用
- 递推关系的建立及在信息学竞赛中的应用 欢迎下载ginger547的算法资料-recurrence relations and the establishment of the Information Science Contest welcome to download the application of the algorithm information ginger547
系统辨识
- 系统辨识中的各种辨识算法:如最小二乘法、递推最小二乘法、广义最小二乘、变遗忘因子递推算法等。-System Identification of identification algorithm : if the least-squares method, recursive least squares method, generalized least squares, changing the forgotten factor alg
RWLS
- 用matlab编写的一个程序,实现系统辨识中的最小二乘递推算法,有运行结果和图形.-using Matlab a procedure for the preparation, system identification achieve the recursive least squares algorithm, running results and graphics.
rels
- 这是黑龙江大学自控理论杨易朋同学在最优估计课程当中用matlab编写的递推增广最小二乘算法!-This is the theory of Heilongjiang University, Yang Yi-controlled peer students in courses optimal estimate prepared by using Matlab recursive least squares algorithm to bro
3order_RLS1
- 最小二乘递推算法RLS,利用递推最小二乘法计算Volterra级数的核-recursive least squares algorithm RLS using recursive least squares method Volterra series of nuclear
45699GAtools
- 好用的。系统辨识中,递推最小二乘估计(RLS)是辨识模型阶次的一个重要的算法。该程序通过实现该算法,得到模型阶次的估计值以及相关参数值。 -refrain. System identification, estimation recursive least squares (RLS) identification model is of the order of an important algorithm. The procedu
systemident
- 系统辨识算法matlab 自动提供输入输出功能 自动辨识-system identification algorithm for automatic Matlab functions of the input and output automatic identification
RELS11111
- 最小二乘递推算法的Matlab仿真 v(k)是服从N(0,1)分布的不相关随机噪声-recursive least squares algorithm Matlab v (k) is subject N (0, 1) not related to the distribution of the random noise
leastsquares
- 1. 一般最小二乘法 3 1.1. 一次计算最小二乘算法 3 1.2. 递推最小二乘算法 3 2. 遗忘因子最小二乘算法 6 2.1. 一次计算法 6 2.2. 递推算法 6 3. 限定记忆最小二乘递推算法 9 4. 偏差补偿最小二乘法 11 5. 增广最小二乘法 13 6. 广义最小二乘法 15 7. 辅助变量法 17 8. 二步法 19 9. 多级最小二乘法 21 10. Yule
erbu
- 此程序是基于二步最小二乘法,运用递推算法。-This procedure is based on two-step least square method, the use of recursive algorithms.
duoji
- 此程序是基于多级最小二乘法,运用递推算法。-This procedure is based on the multi-stage least squares method, the use of recursive algorithms.
allan 递推算法
- ALLAN方差算法,告别ALLAN普通算法的时间过长的问题,新算法采用递推形式(ALLAN anaylaze arithmetic recurrence)
递推算法
- 在yule-walker方程已建立的基础上,建立的递推算法源程序(Based on Yule-Walker equation, the recursive method established)
第3章 递推算法(C++版)
- 递推法是一种重要的数学方法,在数学的各个领域中都有广泛的运用,也是计算机用于数值计算的一个重要算法。这种算法特点是:一个问题的求解需一系列的计算,在已知条件和所求问题之间总存在着某种相互联系的关系,在计算时,如果可以找到前后过程之间的数量关系(即递推式),那么,从问题出发逐步推到已知条件,此种方法叫逆推。无论顺推还是逆推,其关键是要找到递推式。这种处理问题的方法能使复杂运算化为若干步重复的简单运算,充分发挥出计算机擅长于重复处理的特点。