diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
commit | b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb (patch) | |
tree | f060afc8dc7e896ad48731b58b5414b4c6ab627b /inc/lizfcm.h | |
parent | b8c662456f2caf219de2a21f137f8fd61e34b0b2 (diff) | |
download | cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.tar.gz cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.zip |
hw8 checkpoint
Diffstat (limited to 'inc/lizfcm.h')
-rw-r--r-- | inc/lizfcm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/lizfcm.h b/inc/lizfcm.h index 1bb5322..70ebd2f 100644 --- a/inc/lizfcm.h +++ b/inc/lizfcm.h @@ -88,4 +88,10 @@ extern Array_double *partition_find_eigenvalues(Matrix_double *m, size_t max_iterations); extern Matrix_double *leslie_matrix(Array_double *age_class_surivor_ratio, Array_double *age_class_offspring); + +extern double rand_from(double min, double max); + +extern Array_double *jacobi_solve(Matrix_double *m, Array_double *b, + double tolerance, size_t max_iterations); + #endif // LIZFCM_H |