CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - K均值算法

搜索资源列表

  1. K-means

    1下载:
  2. 模式识别中聚类分析经典算法,K-均值算法,C语言编写,可以读入文件,处理任意维数和任意个数的特征向量,附有测试数据。-The classic pattern recognition, cluster analysis algorithm, the K-means algorithm, written in C language, can read the file, handle any number of dimensions and any number of feature vectors
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-30
    • 文件大小:6562
    • 提供者:李若
  1. k-means

    0下载:
  2. k均值算法,一种聚类算法,用来实现网络上相近节点的映射。-k-means algorithm, a clustering algorithm, used to achieve similar nodes in the network mapping.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:16938
    • 提供者:yangliu
  1. k-and-isodata

    0下载:
  2. 模式训别的k均值算法和isodata聚类算法c++实现,程序有较清楚的注释,且有word文档说明程序是如何实现算法的,对于刚接触模式识别的程序具有很好的启发作用,不足之处是没有用mfc完成界面编程-Mode of training to achieve other k-means algorithm and isodata clustering algorithm c++, procedures clearer notes and word documents that the program
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-09
    • 文件大小:1074621
    • 提供者:kevin
  1. K-means-and-Perceptron

    1下载:
  2. 该程序为matlab程序,共有三个文件,dataC.m为程序入口,实现功能对50组数据用k均值算法进行分类,再对40组数据用感知器算法训练,然后用训练得到的判别函数对剩下10组数据分类,最后与原始分类做差比较,若分类无误,则全显示为0.-Matlab program on the program, a total of three files dataC.m for program entry features 50 sets of data with k-means algorithm to
  3. 所属分类:matlab

    • 发布日期:2017-03-26
    • 文件大小:2956
    • 提供者:阿书
  1. k-means-algorithm-

    0下载:
  2. 在matlab开发环境下用k均值算法实现数据的分类,以及得到数据的聚类中心- realizingthe data classification With k-means algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-05
    • 文件大小:8796
    • 提供者:赵子岩
  1. K-means

    1下载:
  2. K均值算法,适合于初学者。包括matlab源代码,测试数据等。-K-means algorithm
  3. 所属分类:matlab

    • 发布日期:2017-05-14
    • 文件大小:2048
    • 提供者:ys
  1. K-means

    0下载:
  2. 模式识别算法程序 K均值算法 主要是实现了K均值聚类分析算法,能够实现对图像的自动分类和识别。-Pattern recognition algorithm K-means algorithm K-means clustering analysis algorithms can achieve automatic image classification and identification.
  3. 所属分类:Graph Recognize

    • 发布日期:2017-11-07
    • 文件大小:8451
    • 提供者:吴程序
  1. K

    0下载:
  2. 最近在学习一些数据挖掘的算法,看到了这个算法,也许k-均值算法对你来说很简单,但对我来说,是自己编写的一个算法。-Learn some data mining algorithms, see this algorithm, perhaps the k-means algorithm for you is very simple, but for me, I have written an algorithm.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-16
    • 文件大小:2072
    • 提供者:lincengxi
  1. K-means

    0下载:
  2. K均值算法描述: 给定类的个数K,将N个对象分到K个类中去, 使得类内对象之间的相似性最大,而类之间的相似性最小。-K-means algorithm described: a given number of classes K and N objects assigned to the K-th class, so that objects within the class of the similarity between the maximum, while the simi
  3. 所属分类:matlab

    • 发布日期:2017-11-18
    • 文件大小:123517
    • 提供者:吴光辉
  1. K-MEANS

    0下载:
  2. k均值聚类是最著名的划分聚类算法,由于简洁和效率使得他成为所有聚类算法中最广泛使用的。给定一个数据点集合和需要的聚类数目k,k由用户指定,k均值算法根据某个距离函数反复把数据分入k个聚类中。-k-means clustering is one of the most famous partition clustering algorithm, due to the simplicity and efficiency so that he became the most widely used i
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-12-03
    • 文件大小:2695
    • 提供者:SmileHF
  1. k-means

    0下载:
  2. k—均值算法opencv代码实现。 k-Means 算法是一种 cluster analysis 的算法,其主要是来计算数据聚集的算法,主要通过不断地取离种子点最近均值的算法。
  3. 所属分类:OpenCV

    • 发布日期:2017-11-16
    • 文件大小:1681
    • 提供者:陈宇
  1. K-means-clustering-algorithm

    0下载:
  2. K均值算法使用的聚类准则函数的误差平方和准则,通过反复迭代优化聚类结果,使所有样本到各自所属类别的中心的距离平方和达到最小。-K-means clustering algorithm uses squared error criterion function and criteria through iterative optimization clustering result, all the samples to the respective classes of the center s
  3. 所属分类:matlab

    • 发布日期:2017-11-07
    • 文件大小:222142
    • 提供者:xuwenju
  1. K-means-

    0下载:
  2. 一种基于颜色的分割,使用聚类算法中的K均值算法。本例主要用到的函数是色彩空间转换函数makecform和applycform,对于K均值聚类使用kmeans函数。-Based on color segmentation, using clustering algorithm K-means algorithm. In this case the main function used is the color space conversion function makecform and appl
  3. 所属分类:Special Effects

    • 发布日期:2017-11-12
    • 文件大小:133128
    • 提供者:chaihongjian
  1. k

    0下载:
  2. k均值算法,数据挖掘里面比较基础的算法,实现类聚-k-means algorithm, which based on the comparison of data mining algorithms to achieve clustering
  3. 所属分类:Console

    • 发布日期:2017-11-29
    • 文件大小:1215
    • 提供者:l梁伟滔
  1. K-means-algorithm-by-CPP

    0下载:
  2. K均值算法,聚类分析,C++实现,附代码以及示例程序-K-means algorithm, cluster analysis, C++ realize, with a code and sample programs
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:56294
    • 提供者:周国乔
  1. k

    0下载:
  2. k均值算法,社区划分算法中经典算法,WSN中分簇也可使用该算法。-K-means algorithm, classic algorithms in community partition algorithm, clustering can also use this algorithm in the WSN.
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:2416
    • 提供者:陈玉骥
  1. k-mean

    0下载:
  2. 简单的K均值算法,使用matlab平台编程,两个文件一个是数据文件,一个是算法文件-Simple K-means algorithm, using matlab platform programming, one file is a data file, and the other is a algorithm file.
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:1370
    • 提供者:Jiamin Bao
  1. K-means--based-on-PSO

    0下载:
  2. 基于粒子群算法的改进k均值算法比较研究 分类中心快速确定-Particle swarm optimization algorithm based on improved k-means algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-01
    • 文件大小:6095
    • 提供者:yanfei
  1. k-mean

    0下载:
  2. 简单的k_mean算法 对k均值算法学习很有帮助,也可以在此基础上学习改进算法-Simple algorithm for k-means algorithm k_mean very helpful, you can learn on the basis of improved algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:945
    • 提供者:曲龙耀
  1. K

    0下载:
  2. 是基于MATLAB软件编的小程序。该程序是K均值算法,应用于模式识别中-K-mean algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:521
    • 提供者:ws
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
搜珍网 www.dssz.com