-
徐士良写的《数值分析与算法》,这是随书的源程序,有需要的朋友可以下来看看!...
徐士良写的《数值分析与算法》,这是随书的源程序,有需要的朋友可以下来看看!-XU Shi-liang wrote the "Numerical Analysis and algorithm", it is with the source, a friend in need can look down!
- 2023-08-08 03:15:04下载
- 积分:1
-
统计一个txt文件中字符的个数和单词的个数
可以指定文本文件中搜索指定字符...
统计一个txt文件中字符的个数和单词的个数
可以指定文本文件中搜索指定字符-a txt document the number of characters and words can specify the number of text files to search for the designated characters
- 2022-03-13 00:17:30下载
- 积分:1
-
基于C/S的复杂的多玩家棋盘游戏
基于C/S的复杂的多玩家棋盘游戏-based on C/S of the complex multi-player board game
- 2022-09-13 23:45:03下载
- 积分:1
-
左侧的边缘算法路由的超大规模集成电路
通道是两个平行的终端所包围的路由区域。通道路由算法的主要目的是尽量减少通道高度。左边缘 algorithm(LEA) 被开发的通道布线的第一种算法。芯片放置在行与行之间和在董事会之下的领域分为矩形通道。左侧边缘算法总是发现一种解决方案的行数等于下限
- 2022-07-27 01:45:29下载
- 积分:1
-
bmp图像的读写
资源描述这个是我们课上学的bmp图像的读写,感觉写的简单易懂。借此分享一下
- 2023-08-20 14:55:03下载
- 积分:1
-
二乘法曲线拟合
//X,Y
二乘法曲线拟合
//X,Y -- X,Y两轴的坐标
//M -- 结果变量组数
//N -- 采样数目
//A -- 结果参数
-Using two multiplication fit the curves//X,Y the site of two axial x,y//M the number of outcome variable//N the number of samples//A the parameter of outcome
- 2022-08-06 17:42:11下载
- 积分:1
-
Kruscal algorythm
这是kruskal算法,用于计算图中的最小展开式3。它是用java编程的,包含一个使用javaswing技术的GUI。
- 2022-02-12 03:06:08下载
- 积分:1
-
快速DCT算法32位的C语言实现,乘法次数最少,可嵌入编码器及解码器使用
快速DCT算法32位的C语言实现,乘法次数最少,可嵌入编码器及解码器使用- Fast DCT the algorithm 32 C language realization, the
multiplication number of times are least, may insert the encoder and
the decoding use
- 2022-08-19 10:04:59下载
- 积分:1
-
德劳内三角化
Delaunay三角剖分为点的平面内的一组P是三角测量的DT(P),使得在P点没有任何三角形DT中(P)的外接圆内。 Delaunay三角最大化在三角测量三角形的各角的最小角度;他们倾向于避免骨感三角形。
- 2022-06-13 05:04:34下载
- 积分: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