diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-23 10:17:03 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-23 10:17:03 -0600 |
commit | 81979f09cf100db32deb0e1917dabb1fe435194c (patch) | |
tree | 4b48cfa50a1e0b9e375e909e4e2eda4a3b364302 /inc | |
parent | 8ba71912faf1bef73aca6c862e1ba5b3c967a588 (diff) | |
download | cmath-81979f09cf100db32deb0e1917dabb1fe435194c.tar.gz cmath-81979f09cf100db32deb0e1917dabb1fe435194c.zip |
matrix multiplication!
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lizfcm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/lizfcm.h b/inc/lizfcm.h index b59651e..12c1278 100644 --- a/inc/lizfcm.h +++ b/inc/lizfcm.h @@ -35,6 +35,8 @@ extern Array_double *bsubst(Matrix_double *u, Array_double *b); extern Array_double *fsubst(Matrix_double *l, Array_double *b); extern Array_double *solve_matrix(Matrix_double *m, Array_double *b); extern Array_double *m_dot_v(Matrix_double *m, Array_double *v); +extern Matrix_double *m_dot_m(Matrix_double *a, Matrix_double *b); +extern Array_double *col_v(Matrix_double *m, size_t x); extern Matrix_double *copy_matrix(Matrix_double *m); extern void free_matrix(Matrix_double *m); extern void format_matrix_into(Matrix_double *m, char *s); |