Clustering of 1d array data set
7 ビュー (過去 30 日間)
古いコメントを表示
Can we use dBscan clustering algorthim for 1d array mixed data set
0 件のコメント
回答 (1 件)
Aditya Patil
2021 年 4 月 8 日
You can use dbscan on 1d array, as below
X = rand(100,1);
dbscan(X, 0.1, 5)
However, it might not be the most appropriate one. Depending on your requirements, kmeans/kmedoids might work better.
参考
カテゴリ
Help Center および File Exchange で Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!