matrix structure. More...
#include <matrix.h>
Public Attributes | |
| int | clm |
| double * | m |
| int | row |
matrix structure.
Defined the structure of the matrix type based on a dynamic allocation. The matrix format is :
<---- clm --->
[ 10 20 30 ] ^
[ 20 10 15 ] |
[ 12 23 13 ] row
[ 20 10 15 ] |
[ 13 14 15 ] v
| m | content of matrix | |
| row | number of lines in matrix | |
| clm | number of column in matrix |
Definition at line 73 of file matrix.h.
| int ARMat::clm |
| int ARMat::row |