Add Matvej's solve

This commit is contained in:
AZEN-SGG 2025-05-02 01:18:28 +03:00
parent c5ae5840ff
commit 3e90cc7ebb
22 changed files with 916 additions and 105 deletions

View file

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