|
matrix.h
A Matrix header file
|
Defination of a _Matrix structure to hold the matrix entries. More...
#include <matrix.h>
Data Fields | |
| int | row_size |
| The number of rows in the matrix. | |
| int | col_size |
| The number of columns in the matrix. | |
| float ** | matrix_entry |
| The individual entries in the matrix. | |
Defination of a _Matrix structure to hold the matrix entries.
A new matrix can be created using tht matrix_alloc function.
1.8.5