|
template<class T > |
T * | matrix (long Rows) |
| Allocating memory for 1D matrix.
|
|
template<class T > |
T ** | matrix (long Rows, long Columns) |
| Initilizing memory for 2D matrix.
|
|
template<class T > |
T *** | matrix (int size_x, int size_y, int size_z) |
| Initializing memory for 3D matrix.
|
|
template<class T > |
void | free_matrix (T *m) |
|
template<class T > |
void | free_matrix (T **m) |
|
template<class T > |
void | free_matrix (T ***m, int size_x, int size_y) |
|
template<class T > |
double | Linear2D (double x, double y, T &old_grid_x, T &old_grid_y, T &f) |
|
- Author
- Developed under supervision of the PI Yuri Shprits
Definition in file Matrix.cpp.