Clustering of 1d array data set
Afficher commentaires plus anciens
Can we use dBscan clustering algorthim for 1d array mixed data set
Réponses (1)
Aditya Patil
le 8 Avr 2021
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.
Catégories
En savoir plus sur Statistics and Machine Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!