필터 지우기
필터 지우기

Use K-mean to measure the center of mass. Is it Possible?

조회 수: 3 (최근 30일)
Senghour Mey
Senghour Mey 2022년 6월 7일
답변: Gobiha Duraisamy 2022년 6월 10일
Hello everyone,
Can we use K-mean in matlab to measure the center of mass? (16x10)
is it possible to find the center of mass?
can you write the code K-mean?

답변 (1개)

Gobiha Duraisamy
Gobiha Duraisamy 2022년 6월 10일
From the attached data file and the information that you have provided, I understand that you have a data matrix, say M of size 25952×10. You want to use K-means clustering to compute the center of mass and to return a matrix of dimension 16×10.
Refer the documentation of kmeans. This function performs K-means clustering of a given matrix.
In your case, you need 16 clusters. Thus, kmeans function is used as follows:
>> [idx,C]=kmeans(M,16)
where C is of size 16×10 and corresponds to the center of mass location of the 16 clusters.

Community Treasure Hunt

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

Start Hunting!

Translated by