#include <matrix.h>
Data Fields | |
| double * | m |
| int | row |
| int | clm |
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 |