diff options
author | Determinant <[email protected]> | 2015-05-17 23:40:25 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-17 23:40:25 +0800 |
commit | 83006367aeec856bf8e59231c78df5b1802e3138 (patch) | |
tree | d617de84bcc11067840582ebe276d29e3851e548 /matrix/generic/matrix.h | |
parent | 902faa66e3da52a1a4cf7b1dc7da6e6bf0d47d34 (diff) |
add addition and multiplication for cumatrix
Diffstat (limited to 'matrix/generic/matrix.h')
-rw-r--r-- | matrix/generic/matrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/matrix/generic/matrix.h b/matrix/generic/matrix.h index d02b56e..655ff3d 100644 --- a/matrix/generic/matrix.h +++ b/matrix/generic/matrix.h @@ -1,3 +1,6 @@ +#ifndef NERV_GENERIC_MATRIX_H +#define NERV_GENERIC_MATRIX_H + typedef struct Matrix { long stride; /* size of a row */ long ncol, nrow, nmax; /* dimension of the matrix */ @@ -7,3 +10,5 @@ typedef struct Matrix { } data; /* pointer to actual storage */ long *data_ref; } Matrix; + +#endif |