Started Task 4

This commit is contained in:
AZEN-SGG 2025-04-16 19:58:03 +03:00
parent 91f3acd62d
commit edb7e1adea
9 changed files with 306 additions and 0 deletions

11
2025.04.18/04Ex/solve.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef SOLVE_H
#define SOLVE_H
double t4_solve (
const double x_0, const int n,
const double * restrict X,
double * restrict Y,
double * restrict D
);
#endif