-
《python编程金典》书中,所有例子的源代码,可以作为学习本书很好的帮助。...
《python编程金典》书中,所有例子的源代码,可以作为学习本书很好的帮助。
- 2022-01-20 23:48:15下载
- 积分:1
-
基于密度聚类算法
DBSCAN(Density-Based Spatial Clustering of Applications with Noise)是一个比较有代表性的基于密度的聚类算法。与划分和层次聚类方法不同,它将簇定义为密度相连的点的最大集合,能够把具有足够高密度的区域划分为簇,并可在噪声的空间数据库中发现任意形状的聚类。
- 2022-05-26 05:44:16下载
- 积分:1
-
计字符串类并给出其基本操作和运算符重载的算法实现。
计字符串类并给出其基本操作和运算符重载的算法实现。
- 2022-03-10 12:57:47下载
- 积分:1
-
序列化对象使用CArchive读取原始数据构建Delaunay三角…
采用序列化对象CArchive读入原始数据构建Delaunay三角网的VC++代码。可以鼠标点击加新点进行构网,包括二维、三维。还可以进行设色、光照等。-Serializing objects using CArchive read the raw data to build Delaunay triangulation VC++ Code. Mouse clicks can add new points structure network, including the two-dimensional, three-dimensional. Can also be used for colors, light and so on.
- 2023-04-27 20:10:03下载
- 积分:1
-
八皇后问题的解法,非常好,请大家看一下,谢谢了
八皇后问题的解法,非常好,请大家看一下,谢谢了-8 Queen" s problem solution, very good, please look at, I would like to thank the
- 2022-01-28 01:59:41下载
- 积分: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
-
Fortran 90
Fortran 90
- 2022-03-07 16:42:23下载
- 积分:1
-
If you have not registered, Please [regist first].You should upload at least fiv...
If you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files).
Webmaster will activate your member account after checking your files. If you do not want to upload source code, you can join the [VIP member] to activate your account.
- 2022-09-21 11:00:03下载
- 积分:1
-
贝叶斯bayes算法分类器诊断程序
贝叶斯bayes算法分类器诊断程序-Bayesian classifier diagnostic procedures
- 2022-02-03 21:13:18下载
- 积分:1
-
一个VC编写的显示地球小程序员,可随鼠标移动转动
一个VC编写的显示地球小程序员,可随鼠标移动转动-a show prepared by the Earth small programmers, with the rotational mobile mouse
- 2022-08-18 19:08:47下载
- 积分:1