Filter löschen
Filter löschen

How can I save my k-means clustering model?

12 Ansichten (letzte 30 Tage)
husnir nasyuha
husnir nasyuha am 21 Dez. 2021
Beantwortet: Yusuf Suer Erdem am 21 Dez. 2021
After running k-means clustering to a dataset, how do I save the model so that it can be used to cluster new set of data?

Antworten (1)

Yusuf Suer Erdem
Yusuf Suer Erdem am 21 Dez. 2021
try to save in '.mat' format.
e.g.
myMatrix = rand( 100, 100 );
filename = 'C:\Stuff\Somefile.mat';
save( filename, 'myMatrix' );

Community Treasure Hunt

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

Start Hunting!

Translated by