-
最小二乘法计算程序
最小二乘法计算程序-least squares method procedures
- 2022-01-26 01:31:06下载
- 积分:1
-
VC++三次样条插值和贝塞尔曲线实例程序
这个源代码是基于VC++ MFC 实现三次样条插值算法,实现数据平滑处理。MFC界面可实现控制点设置,且可选择采用三次样条插值或贝塞尔曲线平滑,结果有GUI显示。
- 2023-02-17 01:50:03下载
- 积分:1
-
有趣的小程序(螺旋矩阵输出)
有趣的小程序(螺旋矩阵输出)-interesting little (Spiral matrix output)
- 2023-03-08 21:05:03下载
- 积分:1
-
C language map of the ergodic
遍历的C语言映射
- 2022-03-18 13:03:02下载
- 积分:1
-
vehicle refueling will issue the restrictions many! I would like to think of onl...
汽车加油行驶问题 这个问题限制条件很多!我想了两天才想出一个动态规划程序!已经经过测试,是正确的!-vehicle refueling will issue the restrictions many! I would like to think of only two days a dynamic planning process! Have been tested, is correct!
- 2022-11-23 06:30:03下载
- 积分:1
-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1
-
有二叉树计算表达式的值
有二叉树计算表达式的值-a binary tree calculate the value of the expression
- 2023-04-10 11:00:03下载
- 积分:1
-
贝叶斯分类算法 matlab
对于UCI数据集 IRIS 用贝叶斯分类算法分类
- 2022-02-20 21:04:15下载
- 积分:1
-
数值计算,表达式求值, 如计算3 + 2 * ( 3 + 2) / 5 + 8 + Sin( pi() / 180 * 30 ) + 1 + 2 ^ 10, 可...
数值计算,表达式求值, 如计算3 + 2 * ( 3 + 2) / 5 + 8 + Sin( pi() / 180 * 30 ) + 1 + 2 ^ 10, 可自定义函数, 采用递归算法-numerical calculation, in the expression evaluates, as calculated 3 2* (2)/5 8 Sin (pi ()/180* 30) 1 2 ^ 10,- defined functions using recursive algorithm
- 2022-01-26 05:01:19下载
- 积分:1
-
2011最新群优化算法——果蝇优化算法
潘文超 老师
美国维吉尼亚州管理科技大学管理学博士
目前在台湾担任大学及技术学院教师
目前在国外担任国际 SCI, SSCI 期刊论文评审委员
研究方向
演化式计算与群智能算法
市场调查与营销研究
财务模型
- 2022-03-03 00:52:22下载
- 积分:1