Add Kochubei's solve

This commit is contained in:
AZEN-SGG 2025-05-07 19:24:40 +03:00
parent 1053f8e3c2
commit 23bf5e0903
28 changed files with 1827 additions and 0 deletions

10
2025.05.02/05Ex/solve.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef SOLVE_H
#define SOLVE_H
int t1_solve (
double (*f) (double),
double a, double b,
double eps, int m, double *x
);
#endif