Joseph Redmon
2015-04-24 989ab8c38a02fa7ea9c25108151736c62e81c972
src/data.h
@@ -5,6 +5,8 @@
#include "matrix.h"
#include "list.h"
extern unsigned int data_seed;
static inline float distance_from_edge(int x, int max)
{
    int dx = (max/2) - x;
@@ -48,5 +50,6 @@
void translate_data_rows(data d, float s);
void randomize_data(data d);
data *split_data(data d, int part, int total);
data concat_data(data d1, data d2);
#endif