Started task 6

This commit is contained in:
AZEN-SGG 2025-05-07 22:33:14 +03:00
parent 47a464aa9e
commit af90d91e29
9 changed files with 225 additions and 102 deletions

View file

@ -1,10 +1,11 @@
#ifndef SOLVE_H
#define SOLVE_H
int t1_solve (
int t6_solve (
double (*f) (double),
const int m, double *d,
double a, double b,
double eps, int m, double *x
);
const double eps, const int M, double *res
);
#endif