搜索资源列表
Householder
- Householder法求解最小二乘问题。可以避免常规方法遇到奇异矩阵(即行列式|A|接近零)时误差太大的问题。本方法的精度非常高。-Householder method least squares problems. Avoid conventional methods encountered singular matrix (that is determinant | A | close to zero) error much of a problem. The accuracy of th
PolyFitSingle
- //=== === === === === === === = //函数说明 //函数名称:PolyFit //函数功能:最小二乘法曲线拟合 //使用方法:double *x ---- 存放n个数据点的X坐标 // double *y ---- 存放n个数据点的Y坐标 // int n -------- 给定数据点个数 // double *a ---- 返回m-1次拟合多项式的m个系数 // int m -------- 拟合多项式的项数,即拟合多项式的
SVD
- % 奇异值分解 (sigular value decomposition,SVD) 是另一种正交矩阵分解法;SVD是最可靠的分解法, % 但是它比QR 分解法要花上近十倍的计算时间。[U,S,V]=svd(A),其中U和V代表二个相互正交矩阵, % 而S代表一对角矩阵。 和QR分解法相同者, 原矩阵A不必为正方矩阵。 % 使用SVD分解法的用途是解最小平方误差法和数据压缩。用svd分解法解线性方程组,在Quke2中就用这个来计算图形信息,性能相当的好。在计算线性方程组时,一些不能分
least_square_estimation_given_sample_with_noise.ra
- 给定带有高斯噪声的三组样本,对其进行最小二乘拟合,并且绘图,求出误差协方差
kalman_intro_chinese_V1.2
- 在1960年,卡尔曼出版了他最著名的论文,描述了一个对离散数据线性滤波问题的递归解决方法。从那以后,由于数字计算的进步,卡尔曼滤波器已经成为广泛研究和应用的主题,特别在自动化或协助导航领域。 卡尔曼滤波器是一系列方程式,提供了有效的计算(递归)方法去估计过程的状态,是一种以平方误差的均值达到最小的方式。滤波器在很多方面都很强大:它支持过去,现在,甚至将来状态的估计,而且当系统的确切性质未知时也可以做。 这篇论文的目的是对离散卡尔曼滤波器提供一个实际介绍。这次介绍包括对基本离散卡尔曼滤波器
kalman
- 卡尔曼滤波的源程序,卡尔曼滤波是以最小均方误差为估计的最佳准则,来寻求一套递推估计的算法。它适合于实时处理和计算机运算。
59564349circlefitting
- 最小二乘法(least squares analysis)是一种 数学 优化 技术,它通过 最小化 误差 的平方和找到一组数据的最佳 函数 匹配。 最小二乘法是用最简的方法求得一些绝对不可知的真值,而令误差平方之和为最小。 最小二乘法通常用于 曲线拟合 (least squares fitting) 。这里有 拟合圆曲线 的公式推导过程 和 vc实现。
MSLS
- (1)Msls分三步对系统和噪声模型进行辨识,采用脉冲序列作为辅助系统模型,用 计算输出数据 ;用原输出数据 计算 ,用递推最小二乘方法分别对系统参数和模型参数进行估计。 (2)M.dat,wnoise1.dat分别为M和白噪声序列。Wnoise1.dat的长度为700,wnoise2.dat的长度为1000。Msls6.c为N=600的程序,Msls8.c为N=800的程序。 (3)程序运行后,生成的两个h文件为产生的脉冲响应函数。Msls6.dat为msls6.c的参数估计结果,ms
LSunwrap.rar
- 简单利用最小二乘法对缠绕的干涉相位进行解缠,但最小二乘法有个固有缺陷,其是基于全局相位解缠方法,容易造成整体误差扩散。 ,Simple least squares method of winding the use of the interferometric synthetic aperture radar (InSAR) to interfere in phase unwrapping
zui_xiao_er_cheng_fa
- 最小二乘法一般是用来拟合直线和一些线性数据的,就是用一条直线来尽可能的表达若干的点的趋势,当然直线穿过所有的点是最好的,但往往有误差存在,所以拟合出的直线要求误差最小.设这些点为(x1,y1),(x2,y2)....(xn,yn).拟合直线为y=kx+b.-Ordinary least squares method is used to fit a straight line and a number of linear data, that is, as far as possible wit
zuixiaoerchengfa
- 最小二乘法是修正误差曲线的算法,本例程实现算法并显示k线修正值只用于后来来者学习使用-Least square method is to amend the error curve algorithm, the routine algorithm and display the correct value of k line only to learn for later use
chazhiyunihe
- 插值函数, 称为被插函数. 最小二乘拟合: 已知一批离散的数据 , 互不相同,寻求一个拟合函数 ,使 与 的误差平方和在最小二乘意义下最小.在最小二乘意义下确定的 称为最小二乘拟合函数-Interpolation function, referred to as interpolation function. Least-squares fitting: a known number of discrete data, different from each other, to find a f
index_test
- 用于光学测量中测量玻璃的折射率的方法,其中包括了两种方法,V棱镜法和最小偏向角法,并进行了误差分析。-Measured for the optical measurement method of refractive index of glass, including the two methods, V-prism method and the minimum deviation angle method and error analysis.
lineerror
- 用最小包容区域法计算直线度误差,精度比最小二乘法高,适用于数据点在轴附近波动的情况。-Inclusive method to calculate the region with the minimum straightness error, precision higher than the least-squares method, applied to the data point in the shaft near the volatile situation.
suanfa4
- 最小二乘法的多项式曲线拟合,在数值分析中对误差分析使用的非常多!-equation solver
vb
- vb代码,做最小差值的线性拟合和三次样条曲线拟合的vb代码,有说明,三次样条和最小误差法进行曲线拟合-vb code, so the minimum difference between the linear fit and cubic spline curve fitting of the vb code, descr iption, and minimum error of spline curve fitting method
a-new-Least-squares-fitting-method
- 本程序是基于非等距节点的正交多项式的最小二乘法拟合算法,该算法已经在vc++6.0下调试通过,经多次验证,本算法的拟合误差较小。-This procedure is based on equidistant nodes of non-orthogonal polynomial least squares fit algorithm, which has been in vc++6.0 through debugging, after repeated verification, the algo
6_2mine
- 数字信号处理中关于最小误差平方计算处理的程序-Digital signal processing for the minimum square error calculation processing procedures
zuixiaoerchengfa
- 用最小二乘法来拟合曲线,简单可行,误差小,在控制台程序中可以显示(zuixiaoerchengfa to simulate the line)
最小二乘
- 最小二乘法(又称最小平方法)是一种数学优化技术。它通过最小化误差的平方和寻找数据的最佳函数匹配。利用最小二乘法可以简便地求得未知的数据,并使得这些求得的数据与实际数据之间误差的平方和为最小。最小二乘法还可用于曲线拟合。其他一些优化问题也可通过最小化能量或最大化熵用最小二乘法来表达(The least square method, also known as the least square method, is a mathematical optimization technology. It