Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:55

0001 
0002 #ifndef ARRAY_H
0003 #define ARRAY_H
0004 
0005 double **new_Array2D_double(int M, int N);
0006 void Array2D_double_delete(int M, int N, double **A);
0007 void Array2D_double_copy(int M, int N, double **B, double **A);
0008 
0009 #endif