KNMCluster

버전 1.0.0.0 (2.29 KB) 작성자: Timothy Felty
Calculates means and associated clusters from input data.
다운로드 수: 3.1K
업데이트 날짜: 2008/1/1

라이선스 보기

Usage: [means,c]=KNMCluster(k,indata)

KNMCluster is an implementation of the K-means clustering algorithm. It takes inputs k and indata. k is the initial guess of the number of clusters.

indata is the aggregate data that you want to put into clusters.

The returned value "means" are the eturned means of the final clusters.

c is a structure with fields Clust1, Clust2, and so on for each of the k means.

Notes: This program makes use of Sara Silva's program shuffle found here on Mathworks. I would like to thank her for this nice little utility, it saved me some time which is always nice.

Tim Felty, fistandantilus1@hotmail.com

인용 양식

Timothy Felty (2024). KNMCluster (https://www.mathworks.com/matlabcentral/fileexchange/6291-knmcluster), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
도움

받음: shuffle_orderby

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Refactored the code to handle more dimensions, also allows for more than 6 dimensions now.