• 大小: 5KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Matlab
  • 标签: 聚类  

资源简介

基于密度的聚类算法的matlab实现,通过配置输入数据格式,即可实现目标的聚类,效果非常好。

资源截图

代码片段和文件信息

function [classtype]=dbscan(xkEps)

% Function: [classtype]=dbscan(xkEps)
%
% Aim: 
% Clustring the data with Density based Scan Algorithm with Noise (DBSCAN)
%
% Input: 
% x - data set (mn); m-objects n-variables
% k - number of objects in a neighborhood of an object 
% (minimal number of objects considered as a cluster)
% Eps - neighborhoog radius if not known put []
%
% Output: 
% class - vector specifying belongingness of the i-th object to certain cluster (m1)
% type - vector specifying type of the i-th object (core: 1 border: 0 outlier: -1)
%
% Example of use:
% x=[randn(302)*.4;randn(402)*.5+ones(401)*[4 4]];
% [classtype]=dbscan(x5[])
%          
% References:
% [1] M. Ester H. Kriegel J. Sander X. Xu A density-based algorithm for discove

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     目录          0  2009-02-27 16:44  DBSCAN

     文件       2780  2009-02-27 16:43  DBSCAN\realDBSCAN.m

     文件       3825  2009-02-27 16:43  DBSCAN\DBSCAN.m

     文件        183  2009-02-02 09:47  DBSCAN\Matlab中文论坛--助努力的人完成毕业设计.url

     文件       3543  2009-02-01 16:19  DBSCAN\使用帮助:新手必看.htm

----------- ---------  ---------- -----  ----

                10331                    5


评论

共有 条评论