Original Data Index after Clustering?

조회 수: 1 (최근 30일)
Anum Ahmed Pirkani
Anum Ahmed Pirkani 2020년 6월 23일
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