Skip to content
Snippets Groups Projects
Commit ff0986b6 authored by Jason R Wilson's avatar Jason R Wilson
Browse files

fixed variable names to match the .c file

parent c59b5e35
No related merge requests found
......@@ -2,6 +2,6 @@
#define KMEANS_H
// calculate kmeans using m steps of Lloyd's algorithm
void calc_kmeans (double data[], int rows, int cols, double kmeans[], int k, int m);
void calc_kmeans (double data[], int num_points, int dim, double kmeans[], int k, int m);
#endif
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment