필터 지우기
필터 지우기

make a cluster from scatter point

조회 수: 1 (최근 30일)
Fatemeh Shomal Zadeh
Fatemeh Shomal Zadeh 2020년 10월 17일
댓글: Fatemeh Shomal Zadeh 2020년 10월 18일
Hi
I have attached my scatter poit figure and I want to make a 2 or 3 clusters from them.
This is my code;
for i = 1:size(MeanEchos,1);
for j = 1:size(MeanEchos,2);
scatter(blob_area{2,j},MeanEchos{2,j},'x');
set(gca,'xscale','log');
grid on;
xlabel('Blob Area');
ylabel('Mean Echo Intensity');
xlim([0 10^5]);
ylim([0 5])
end
end
I would be greateful if anyone would be able to help me.
Thanks in advance

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 17일
If you have statistical and machine learning toolbox, then try kmeans(): https://www.mathworks.com/help/releases/R2020b/stats/kmeans.html
  댓글 수: 7
Ameer Hamza
Ameer Hamza 2020년 10월 18일
From the images, it seems that the results are correct. It clearly shows two clusters. I am glad to be of help!
Fatemeh Shomal Zadeh
Fatemeh Shomal Zadeh 2020년 10월 18일
Great. Thanks a lot!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by