登录
首页 » 算法 » Was established based on moving least square (Moving Least

Was established based on moving least square (Moving Least

于 2023-02-17 发布 文件大小:457.44 kB
0 52
下载积分: 2 下载次数: 1

代码说明:

建立了一种基于移动最小二乘(Moving Least-Squares MLS)法的曲线曲 面拟合方法 这种方法对传统的最小二乘(LS)法的作了比较大的改进 使生成的曲线曲面具 有精度高 光滑性好等许多优点 详细介绍了移动最小二乘法的原理 应用和特点 并且给 出了使用移动最小二乘法进行曲线曲面拟合的程序设计流程 最后给出了曲线拟合和空间散 乱数据曲面拟合算例 将拟合结果与最小二乘拟合结果作了比较 分析了 MLS 拟合曲线曲 面的光滑性和拟合质量 表明了该方法的优越性和有效性-Was established based on moving least square (Moving Least-Squares MLS) method of this curve and surface fitting method to the traditional method of least squares (LS) method was relatively large improvements to make the generated curves and surfaces with a precision of High smoothness, good detail, and many other advantages of the principle of least-squares method for mobile applications and features and gives the least-squares method using the mobile curve and surface fitting procedure design process Finally, curve fitting and spatial scattered data surface to be cost-effective cases of the results of the fitting results are compared with the least-squares fitting analysis of MLS fitting curves and surfaces smooth and fitting quality demon

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 用VB实现线性方程组的求解。包括:高斯消元,LU分解追赶,迭代,奇异值分解,乔累斯基分解等12种数值方。...
    用VB实现线性方程组的求解。包括:高斯消元法,LU分解法追赶法,迭代法,奇异值分解,乔累斯基分解法等12种数值方法。-VB of linear equations to solve. Including : Gaussian Elimination Act, the law catch up with the LU decomposition, iterative method, singular value decomposition, Joe Cholesky decomposition 12 species of numerical methods.
    2022-03-12 15:07:13下载
    积分:1
  • 本程序提供了输入表达式计、积分、微分、拟合、插值等多种数值计,界面简练,功能强大...
    本程序提供了输入表达式计算、积分、微分、拟合、插值等多种数值计算,界面简练,功能强大-procedures for the importation of expression, integral, differential, fitting, interpolation and other numerical calculation, concise interface, powerful
    2022-03-15 01:52:11下载
    积分:1
  • 国产stc89c51对应矩阵键盘
    资源描述在键盘中按键数量较多时,为了减少I/O口的占用,通常将按键排列成矩阵形式。在矩阵式键盘中,每条水平线和垂直线在交叉处不直接连通,而是通过一个按键加以连接。这样,一个端口(如P1口)就可以构成4*4=16个按键,比之直接将端口线用于键盘多出了一倍,而且线数越多,区别越明显,比如再多加一条线就可以构成20键的键盘,而直接用端口线则只能多出一键(9键)。
    2022-10-02 19:00:03下载
    积分:1
  • 该代码是“常用的计机数值和程序的程序。
    本代码是《计算机常用数值计算算法与程序 C++版》一书的配套线性方程组求解代码,这些C++程序已经在Virsual C++ 6.0环境下通过。注意,在VC++ 6.0中设置好路径,特别是include目录(文件夹)的路径,否则在编译时会出现找不到头文件的错误,使编译无法正常进行。-the code is "commonly used computer numerical algorithms and procedures C version," a book supporting the linear equation solving the code, these procedures have been in C C 6.0 Virsual environment through. The attention of the VC 6.0 installed path, in particular include directory (folder) path, otherwise there will be compiled header files could not find the mistakes and the compiler not normal.
    2022-03-02 07:43:38下载
    积分:1
  • 卡尔曼滤波的C语言实现
    Kalman Filter 是一个递归的估计,即只要获知上一时刻的状态估计和当前状态的观测就可以计算出当前状态的估计,不同于其他的估计技术,Kalman 滤波器不需要观测或/和估计的历史记录,KalmanFilter 是一个纯粹的时域滤波器,而不像低通滤波器等频域滤波器那样,需要在频域中设计,然后转换到时域中应用。 本代码是用C语言实现卡尔曼滤波。
    2022-08-17 09:07:33下载
    积分:1
  • 使用C++和wxWidgets绘声能量
    应用背景该程序能够播放或停止一个WAV文件。此外,你可以输出在txt格式的WAV文件的能量。你可以画出能量输出。这个程序是一个声音分析。关键技术我们可以上传wav文件,选择文件,所以,我们可以先,得到的WAV文件的能量并能记录txt文件所以我们可以看到能量值。此外,在视觉部分,利用直流电能值。
    2022-02-01 04:14:31下载
    积分:1
  • 鼹鼠闯迷宫
    资源描述void creatWay(int (*mg)[N],int x, int y)//在迷宫中产生一条路,使用图的深度遍历思想来实现, { static int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0};////将要走的4个方向保存在二维数组中 int zx = x*2; int zy = y*2; int next, turn, i; mg[zx][zy] = 0; if(rand()%2) turn = 1; else turn = 3; for(i=0,next=rand()%4;i
    2022-01-26 05:46:58下载
    积分:1
  • 一个VB小程序,能够进行大数的计,可以作为学习的参考
    一个VB小程序,能够进行大数的计算,可以作为学习的参考-a small procedure to carry out large numbers of calculation can be used as reference for the study
    2022-04-17 18:45:44下载
    积分:1
  • 七大基本排序
    七大基本排序算法,已通过测试快速排序冒泡排序堆排序希尔排序归并排序选择排序插入排序
    2022-01-28 19:10:43下载
    积分:1
  • 逆向最大匹配java
    这是用java实现的逆向最大匹配的一个小程序,我做了一些注释。词典比较简单,这点有些对不起观众了。希望大家用php或者是sql实现更庞大的字典。字符匹配的最大长度是3,还没有做出一个可以使用随便长度的匹配的算法。这也是笔者的局限所在,希望看到的大侠们可以加上自己的一些绵薄之力把这个小程序继续完善一下,让大家更好的学习这个算法。
    2022-08-02 11:49:09下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载