Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
Senghour Mey
Senghour Mey am 7 Jun. 2022
Beantwortet: Gobiha Duraisamy am 10 Jun. 2022
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?

Antworten (1)

Gobiha Duraisamy
Gobiha Duraisamy am 10 Jun. 2022
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