-
//=== === === === === ==== === === === === === === =// letter Description// func...
//=== === === === === === =====
//函数说明
//函数名称:Correlation
//函数功能:计算最小二乘法拟合的多项式的相关系数
//使用方法:int M------ 拟合多项式的阶数(已知条件)
// double *b--- 拟合曲线的系数,排列顺序为由高阶到低阶(已知条件)
// double *x--- 结点x轴数据(已知条件)
// double *y--- 结点y轴数据(已知条件)
// double *Yg-- 结点估计值,个数为m(过程变量)
// int m------ 结点个数(已知条件)
//注意事项:多项式阶数最高为10,多项式的形式为 y = a0 + a1x +a2x2
-//=== === === === === ==== === === === === === === =// letter Description// function name : Correlation// Function functions : Calculation least squares polynomial fitting of the correlation coefficient// Use : int M------ polynomial fitting stage (known condition)//* b--- double fitting song The coefficient, Higher-order the order on grounds of low order (known condition)//* double-node x x axis data (known to be pieces)// double* y--- node y-axis data (known condition)//* double FSL-- Nodes estimates, Number m (process variables)// int m------ node number (known condition)// Note : polynomial order of a maximum of 10. polynomials in the
- 2022-04-29 13:08:12下载
- 积分:1
-
图的遍历,搜索
图的遍历,搜索-traverse map, search
- 2022-08-02 13:50:28下载
- 积分:1
-
很多数值分析算法函数
很多数值分析算法函数-A lot of numerical analysis algorithm function
- 2022-05-21 21:36:22下载
- 积分:1
-
本程序用来计算单相关系数,需要输入变量个数(N),自变量X和因变量Y
本程序用来计算单相关系数,需要输入变量个数(N),自变量X和因变量Y-This procedure used to calculate the single-correlation coefficient, the need for the number of input variables (N), since the variables X and dependent variable Y
- 2022-07-14 08:33:15下载
- 积分:1
-
求逆矩阵的代码,可能不太好用。只是发上来看看而已。
求逆矩阵的代码,可能不太好用。只是发上来看看而已。-Inverse matrix of the code, may not be easy to use. Just made up just to see.
- 2022-03-30 16:09:52下载
- 积分:1
-
这是一个支持多位数运算(可以达到几百位的长整数)的数类,名字叫Long,它是从long类发展过来的,但比原来的long类功能多。Long类可以和原有的doubl...
这是一个支持多位数运算(可以达到几百位的长整数)的数类,名字叫Long,它是从long类发展过来的,但比原来的long类功能多。Long类可以和原有的double,long等等数据类型混合运算-This is a multi-digit support operations (which may reach hundreds of long integers) to a number of named Long, it is long from over the type of development, but more than the original multi-functional long. Long classes can be double the original, long data types, etc. Operational mixed
- 2022-01-26 07:59:30下载
- 积分:1
-
水文模型SWAT的源代码
分布式水文模型SWAT在水文中享有较高的盛誉,它能够综合反映一个地区的水文地质状况,以及水文气象状况,而其源代码更是研究SWAT的必备“神器”,学习了解SWAT的源代码不仅可以在最短的时间内学习到SWAT的“精要”,更能学习其Fortran语言,了解模型到代码的转换,更能学习到其模型的“实质”。
因此,一些致力于水文模型研究以及编程语言学习的“童鞋”们,你们有福了,赶紧下载这个SWAT的源代码,有时间慢慢学习,仔细推敲,水文中的模型就是只要学会一种,其他的基本触类旁通!
- 2022-09-06 23:05:03下载
- 积分:1
-
数学全排列算法
组合数学,全排列字典序、递增进位、递减进位、邻位对换法,C,算法,包含完整的工程文件,用VC++6.0开发,可以直接运行,有几种方式可选,可以根据情况输出计算时间
- 2022-11-25 07:35:03下载
- 积分:1
-
机器人避障
简单的机器人避障算法,使用的是虚拟力场的方法。附有效果截图。对于机器人路径规划的初学者会有帮助。代码简单易懂,可以自己设定障碍物的位置。
- 2022-08-23 07:06:07下载
- 积分:1
-
Prim算法求解最短路径
import java.util.ArrayList;
public class Prim {
double[][] matrix; //从0开始,邻接矩阵
double t; //记录时间
int num; //节点数
float bestc; //最优路径距离
int start = 0; 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-20 15:11:11下载
- 积分:1