VERB_code_2.2
2
|
#include "Matrix.h"
Go to the source code of this file.
Macros | |
#define | matrix_array_MATRIX_CPP |
Functions | |
template<class T > | |
T * | matrix (long Rows) |
template<class T > | |
T ** | matrix (long Rows, long Columns) |
template<class T > | |
T *** | matrix (int size_x, int size_y, int size_z) |
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) |
Definition in file Matrix.cpp.
#define matrix_array_MATRIX_CPP |
Definition at line 7 of file Matrix.cpp.
|
inline |
|
inline |
|
inline |
|
inline |
Freeing memory for 1D matrix
Definition at line 89 of file Matrix.cpp.
References VC::m.
|
inline |
Freeing memory for 2D matrix
Definition at line 95 of file Matrix.cpp.
References VC::m.
|
inline |
Freeing memory for 3D matrix
Definition at line 102 of file Matrix.cpp.
References VC::m.
double Linear2D | ( | double | x, |
double | y, | ||
T & | old_grid_x, | ||
T & | old_grid_y, | ||
T & | f | ||
) |
Linear2D. Does not work probably or works only for regular grid. Some other wired interpolation attempts.
Definition at line 1880 of file Matrix.cpp.