blob: a0cd07909e30fd95480e58d4fb2d2426fb4fc84c [file] [log] [blame]
#ifndef ARRAY_H
#define ARRAY_H
double **new_Array2D_double(int M, int N);
void Array2D_double_delete(int M, int N, double **A);
void Array2D_double_copy(int M, int N, double **B, double **A);
#endif