搜索资源列表
K_Means(java)
- 聚类算法(java)语言实现,大家有问题的话可以联系我,一起讨论啊,
K-Means
- K_Means(java)算法的实现,有界面,灵活性强,交互性强。-K_Means (java) algorithm, there are interfaces, flexibility, and strong interaction.
k_means
- 简单易懂的k-means聚类算法,可运行!有详细注释说明。-Straightforward k-means clustering algorithm, run! Detailed explanatory notes.
K_means
- 一个实现K中心聚类的算法源码,java实现-An implementation of the K-center clustering algorithm
Kmeans1
- 连接mysql数据库的k均值聚类算法,有想过还不错。-connect with mysql by k_means。Great result.
kmeans
- 简单的k_means聚类算法,用java语言编写实现,扩展性不强-simple kmeans clustering method
K_Means
- k-means 算法的工作过程说明如下:首先从n个数据对象任意选择 k 个对象作为初始聚类中心;而对于所剩下其它对象,则根据它们与这些聚类中心的相似度(距离),分别将它们分配给与其最相似的(聚类中心所代表的)聚类;然后再计算每个所获新聚类的聚类中心(该聚类中所有对象的均值);不断重复这一过程直到标准测度函数开始收敛为止。一般都采用均方差作为标准测度函数. k个聚类具有以下特点:各聚类本身尽可能的紧凑,而各聚类之间尽可能的分开。下面给出我写的源代码。-work process k-means al