Original Data Index after Clustering?

3 次查看(过去 30 天)
Dear all,
From a data set, i have performed clustering to identify the samples greater than a particular threshold. After performing clustering, how can I identify the samples of original data corresponding to these clusters?
I have found clusters correctly, but now I want to find the samples (indices) of original data corresponding o these clusters.
for i = 1:10 %number of datasets
Sig_Detect = SignaltoDetect(:,i);
% Finding Peaks
[g,~] = find(Sig_Detect > Threshold_IntDetect);
cluster1 = clusterDBSCAN('MinNumPoints',50,'Epsilon',40,'EnableDisambiguation',false);
idx = cluster1(g);
No_Int_PerChirp = length(idx);
fh = plot(cluster1,g,idx);
end
Kind Regards
Anum

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Cluster Analysis and Anomaly Detection 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by