-
Was established based on moving least square (Moving Least
建立了一种基于移动最小二乘(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
- 2023-02-17 12:50:04下载
- 积分:1
-
研究生期间上《数值计算方法》课的作业,所有代码都是C语言实现并调试通过,现在上传为大家服务。这是Seide迭代算法...
研究生期间上《数值计算方法》课的作业,所有代码都是C语言实现并调试通过,现在上传为大家服务。这是Seide迭代算法-Seide iterative algorithm with C language
- 2023-04-17 11:45:03下载
- 积分:1
-
美国航空航天局太空轨道任务设计工具源代码
你想不想去火星,但不知道什么时候离开或多少带来了什么?你想的东西降落在月球上?一般任务分析工具(GMAT)是一个开放源代码的太空任务的分析工具来回答只是那些类型的问题。 GMAT是由一组美国航天局,私营工业,公共和私人捐助者的发展。 GMAT的目的是既为真实世界的工程设计研究,如NASA宪章的精神,教育和公众参与的工具。GMAT的设计建模,优化,并估计飞船在轨道飞行状态从低地球轨道到月球应用,星际轨道等深空任务。分析师模型空间任务中GMAT首先创建资源,如飞船,传播者,估计和优化。资源可以被配置,以满足特定的应用程序和任务的需要。 GMAT包含一套广泛的可用资源,可以被分解成物理模型的资源与分析模型资源。物理资源包括飞船,推进器,罐,地面站,形成冲动烧伤,烧伤有限,行星,彗星,小行星,月球,重心,振动点。分析模型资源包括差分校正,传播,优化,估计*,3-D图形,XY坐标图,报告文件,文件的星历,用户定义的变量,数组和字符串,坐标系统,自定义子程序,MATLAB功能和数据。
- 2022-12-04 23:05:06下载
- 积分:1
-
1.简介 本程序是用纯C语言编的一个基于菜单命令行的数据库系统。可以创建多个数据库,数据库表,字段。其中字段的类型只能为整形,浮点型,字符型和字符串型(最大长度...
1.简介 本程序是用纯C语言编的一个基于菜单命令行的数据库系统。可以创建多个数据库,数据库表,字段。其中字段的类型只能为整形,浮点型,字符型和字符串型(最大长度确定,不能改变)。 2.功能 a)数据库存储: 一个数据库存储于一个文件中,打开文件将数据库载入到内存。 保存时将内存中数据重新写到文件中去。 b)数据库管理: 提供数据库的创建,表的创建,字段的创建 提供对数据的查询,删除,修改,排序功能 c)支持SQL部分语句: 支持SELECT 和DELETE语句-1. Introduction of this program is pure C language based on a series of menu command-line database system. You can create multiple databases, database tables, fields. The type field which can only plastic, floating point, character and string (maximum length and can not be changed). 2. A function) database storage : a database stored in a document, the document will open the database to include memory. When will preserve memory data re-wrote a document. B) database management : to provide database creation, table creation, the field for the creation of data inquiries, delete, modify, sequencing feature c) some support SQL statement : support DELETE and SELECT statements
- 2023-05-12 09:50:03下载
- 积分:1
-
利用变步长来计算积分,该算法中用到步长的折半方法。
利用变步长来计算积分,该算法中用到步长的折半方法。-use variable step to calculate integrals, the algorithm uses the half step method.
- 2022-06-20 02:56:02下载
- 积分:1
-
absolutely wonderful, for beginners
绝对精彩,适合初学者-absolutely wonderful, for beginners
- 2022-03-02 20:48:43下载
- 积分:1
-
C语言282例代码集
所有程序都可以在VS 2015上运行;
该程序尤其适合初学者,算法初学者;
部分程序来自282例,其他是原创程序。
- 2022-03-22 05:05:15下载
- 积分:1
-
矩阵运算
// 矩阵乘法: C=AB, A[m×v], B[v×n], C[m×n] ... for row-major matrices
// 允许A,B,C 带入相同参数.
double* matr_x(double*C, const double*Ao, const double*Bo, const int m,const int v, const int n){
if(!Ao || !Bo) return 0; if(!C) C=new double[m*n];
double* A=new double[m*v], * B=new double[v*n];
memcpy(A,Ao,m*v*sizeof(double)); memcpy(B,Bo,v*n*sizeof(double));
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-07 01:39:24下载
- 积分:1
-
典型的一阶马尔科夫信号产生程序
AR(1)模型建模示例,由于AR(1)简单故没有复杂的建模流程,所以此例仅做了解,AR(1)模型的参考,顺便也可以熟悉一下系统辨识工具箱,一阶马尔科夫程序,可以用于有色噪声等。
- 2023-05-30 15:00:03下载
- 积分:1
-
GNU的数值运算库,内容丰富!
GNU的数值运算库,内容丰富!-GNU numerical arithmetic library, a rich content!
- 2022-05-29 13:04:47下载
- 积分:1