#ifndef MATRIX_H #define MATRIX_H #include #include #include float* CreateMatrix(int height, int width); void SetRandomWeight(float* matrix, int height, int width); void ApplyFunction(float *InputMatrix, float *OutputMatrix, int height, int width, float (*fonction)(float val)); #endif