Help with creating clustering

3 ビュー (過去 30 日間)
Lev Mihailov
Lev Mihailov 2019 年 8 月 9 日
回答済み: Neuropragmatist 2019 年 8 月 9 日
Hello! I have a signal X1 and X2 I need to cluster it by depth and distance, I tried k average but, they told me that you can’t do this, tell me how best to do this
X1=[12 13 22 14 15 22]
X2=[11 12 29 0 14 31]
Y=[X1;X2];

採用された回答

Neuropragmatist
Neuropragmatist 2019 年 8 月 9 日
I think the biggest problem here is that you have very few data points.
Have you tried looking at the various options on this page:
In 2 minutes I cooked this together without any care or thought, so I'm sure you can make something even better suited to your data:
% your data
X1=[12 13 22 14 15 22];
X2=[11 12 29 0 14 31];
Y=[X1(:) X2(:)]; % I changed this to be Mx2
figure
subplot(1,2,1)
plot(Y(:,1),Y(:,2),'ko') % plot the original data
axis([min(Y(:,1))-3 max(Y(:,1))+3 min(Y(:,2))-3 max(Y(:,2))+3])
Z = linkage(Y); % see: https://uk.mathworks.com/help/stats/linkage.html
T = cluster(Z,'cutoff',15,'Criterion','distance'); % see: https://uk.mathworks.com/help/stats/cluster.html
subplot(1,2,2)
gscatter(Y(:,1),Y(:,2),T) % plot the clustered data
axis([min(X1(:))-3 max(X1(:))+3 min(X2(:))-3 max(X2(:))+3])
untitled.png
Hope this helps,
M.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatched Filter and Ambiguity Function についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by