File size: 146 Bytes
e87a50a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include<vector>

void kmean_clustering(
    int d,
    int n,
    int k,
    const float *x,
    float *centroids,
    int seed
);