diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-13 17:20:17 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-13 17:20:17 -0600 |
commit | e16dc49abca343af1ab61c81ab9034c7c781485b (patch) | |
tree | e293378d0eb6674306ee7ca0f1fd87c89837a6ab /inc | |
parent | 0ce79392c39fb71f17ed5f59ba399ca5677aa7cf (diff) | |
download | cmath-e16dc49abca343af1ab61c81ab9034c7c781485b.tar.gz cmath-e16dc49abca343af1ab61c81ab9034c7c781485b.zip |
fix subst
Diffstat (limited to 'inc')
-rw-r--r-- | inc/lizfcm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/lizfcm.h b/inc/lizfcm.h index 99acbf2..40046d2 100644 --- a/inc/lizfcm.h +++ b/inc/lizfcm.h @@ -30,7 +30,9 @@ extern Line *least_squares_lin_reg(Array_double *x, Array_double *y); extern void put_identity_diagonal(Matrix_double *m); extern Matrix_double *copy_matrix(Matrix_double *m); extern void free_matrix(Matrix_double *m); -extern Matrix_double **put_lu_decomp(Matrix_double *m); +extern Matrix_double **lu_decomp(Matrix_double *m); +extern Array_double *bsubst(Matrix_double *u, Array_double *b); +extern Array_double *fsubst(Matrix_double *l, Array_double *b); extern void format_matrix_into(Matrix_double *m, char *s); |