iPDC-suite/iPDC/inc/Kmeans2.h

4 lines
202 B
C
Raw Normal View History

2022-11-01 22:49:13 +05:30
int *getRandoms(int lower, int upper, int count);
2022-11-03 02:20:45 +05:30
long double distance(struct Point *A, struct Point *B);
bool Kmeans2(struct data_frame *df);
long double distance2(struct centroid *A, struct Point *B);