Start Task 3

This commit is contained in:
AZEN-SGG 2025-03-26 15:17:02 +03:00
parent 4134eda893
commit 3eb349f81c
32 changed files with 475 additions and 16 deletions

7
2025.03.28/03Ex/matrix.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef MATRIX_H
#define MATRIX_H
void init_vec_b(const double * restrict a, double * restrict b, int n);
void matvec_mul(int n, const double * restrict A, const double * restrict x, double * restrict x_k);
#endif