kmeans
kmeans copied to clipboard
Simple C routines for generic K-means implementations
Results
1
kmeans issues
Sort by
recently updated
recently updated
newest added
On my machine, without adding `-lm`: ``` root@37c3d19aeab8:/src/kmeans# make example2 cc -g -O0 -c -o kmeans.o kmeans.c cc -g -O0 -c -o example2.o example2.c cc -g -O0 kmeans.o example2.o -o...