Task 4 and 5 are done

This commit is contained in:
AZEN-SGG 2025-05-12 19:59:36 +03:00
parent 6efd4f5786
commit 67a26248b1
13 changed files with 285 additions and 90 deletions

View file

@ -1,9 +1,12 @@
#ifndef SOLVE_H
#define SOLVE_H
int t3_solve (
#define NUM_FPE 1e-300
double t4_solve (
double (*f) (double),
double x, double h
double a, double b,
int n
);
#endif