Original Data Index after Clustering?
조회 수: 1 (최근 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
답변 (0개)
참고 항목
카테고리
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!