Add Diverge

This commit is contained in:
AZEN-SGG 2025-04-30 17:00:05 +03:00
parent 00bd9b5724
commit e5f3f4c6e2
18 changed files with 642 additions and 1 deletions

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

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