2nd_Sem_Bogachev/2025.05.02/Example/solve.h
2025-04-29 14:35:20 +03:00

12 lines
164 B
C

#ifndef SOLVE_H
#define SOLVE_H
#include "status.h"
status t1_solve (
double (*f) (double),
double a, double b,
double eps, int m, double *x
);
#endif