This commit is contained in:
AZEN-SGG 2025-05-01 09:16:08 +03:00
parent 22ef2dda9b
commit c4cd60525e
8 changed files with 282 additions and 0 deletions

12
2025.05.02/08Ex/solve.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef SOLVE_H
#define SOLVE_H
#include "status.h"
status t8_solve (
double (*f) (double),
double a, double b,
double eps, int m, double *x, int *m_it
);
#endif