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 include/AR/matrix.h.
int ARMat::clm |
Definition at line 76 of file include/AR/matrix.h.
double * ARMat::m |
Definition at line 74 of file include/AR/matrix.h.
int ARMat::row |
Definition at line 75 of file include/AR/matrix.h.