Task 7 was corrected

This commit is contained in:
AZEN-SGG 2025-03-26 23:07:48 +03:00
parent 87e1eb75d5
commit 863948011f
14 changed files with 425 additions and 1 deletions

6
2025.03.28/08Ex/solve.h Normal file
View file

@ -0,0 +1,6 @@
#ifndef SOLVE_H
#define SOLVE_H
void t7_solve(const double * restrict A, double * restrict x_0, const double * restrict b, double * restrict x, double * restrict r, int n, int m, double t);
#endif