Task 6 was fixed and Task 8 was done

This commit is contained in:
AZEN-SGG 2025-03-27 20:44:47 +03:00
parent 863948011f
commit 0a8c75a0cf
45 changed files with 1294 additions and 241 deletions

View file

@ -131,9 +131,9 @@ int main(int argc, char* argv[])
printf("Matrix:\n");
print_matrix(a, n, n, p);
printf("Vector:\n");
print_matrix(x0, 1, n, p);
print_matrix(x0, n, 1, p);
printf("Vector b:\n");
print_matrix(b, 1, n, p);
print_matrix(b, n, 1, p);
t = clock();
solve2(a, x0, x, b, n, m, tau);
t = (clock() - t) / CLOCKS_PER_SEC;