Task 6 was fixed and Task 8 was done
This commit is contained in:
parent
863948011f
commit
0a8c75a0cf
45 changed files with 1294 additions and 241 deletions
4
2025.03.28/dist/Ulyanov/task02.c
vendored
4
2025.03.28/dist/Ulyanov/task02.c
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue