-rw-r--r-- | matrix_headers_source.h | 7 |
diff --git a/matrix_headers_source.h b/matrix_headers_source.h index e63bdab7..0515d990 100644 --- a/matrix_headers_source.h +++ b/matrix_headers_source.h @@ -20,6 +20,13 @@ extern void FUNCTION (matrix, check_size) (lua_State *L, TYPE (gsl_matrix) *m, size_t n1, size_t n2); +extern int FUNCTION (matrix, inverse_raw)(lua_State *L, + const TYPE (gsl_matrix) *a); + +extern int FUNCTION (matrix, solve_raw) (lua_State *L, + const TYPE (gsl_matrix) *a, + const TYPE (gsl_matrix) *b); + /* matrix helper functions */ extern void |