-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjacoby.cpp
81 lines (61 loc) · 2.72 KB
/
jacoby.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "jacoby.h"
using namespace std;
//НОРМА С КУБИЧЕСКАЯ
double norm_matrix(std::vector<std::vector<double>> &matrix){
double max_row = 0;
for (int i = 0; i < matrix.size(); i++){
double temp_max_row = 0;
for (int j = 0; j < matrix.size(); j ++){
temp_max_row += fabs(matrix[i][j]);
}
if (temp_max_row > max_row){
max_row = temp_max_row;
}
}
return max_row;
}
std::vector<std::vector<double>> convinient_matrix_jacoby (std::vector<std::vector<double>> &matrix, vector<double> &changed_vector_jacoby, double &norm_jacobyC){
//МАТРИЦА С, ВЫДЕЛЯЕМ ПАМЯТЬ
std::vector<std::vector<double>> result_convinient_matrix_jacoby(matrix.size(), vector<double> (matrix[0].size() - 1));
//ПРИВОДИМ ПЕРВОНАЧАЛЬНУЮ МАТРИЦУ К УДОБНОМУ ВИДУ(МЕТОД ЯКОБИ)
for (int i = 0; i < matrix.size(); i++ ){
for (int j = 1 + i; j < matrix.size(); j ++){
vector<double> temp_vector;
//ПЕРЕСТАНОВКА СТРОК(ЧАСТИЧНЫЙ ВЫБОР ГЛАВНОГО ЭЛЕМЕНТА)
if (fabs(matrix[j][i]) > fabs(matrix[i][i])){
for (int k = 0; k < matrix[0].size(); k++){
temp_vector.push_back(matrix[j][k]);
}
for (int n = 0; n < matrix[0].size(); n++){
matrix[j][n] = matrix[i][n];
matrix[i][n] = temp_vector[n];
}
}
}
for (int k = 0; k < matrix[0].size() - 1; k ++){
result_convinient_matrix_jacoby[i][k] = -matrix[i][k]/matrix[i][i];
if(k == i){
result_convinient_matrix_jacoby[i][i] = 0;
}
}
//МЕНЯЕМ ВЕКТОР ПРАВОЙ ЧАСТИ
changed_vector_jacoby.resize(matrix.size());
changed_vector_jacoby[i] = matrix[i][matrix[0].size() - 1]/matrix[i][i];
}
//ВЫВОД ПОЛУЧЕННОЙ МАТРИЦЫ
for (const auto &v:result_convinient_matrix_jacoby){
for (const auto &n:v){
std::cout << left << setw(15) << setprecision(6) << fixed << n << "\t";
}
cout << endl;
}
std::cout << std::endl;
//ВЫВОД ПОЛУЧЕННОГО ВЕКТРА ПРАВОЙ ЧАСТИ
// cout << "Измененный вектор правой части" << endl;
// for (int i = 0; i < changed_vector_jacoby.size(); i ++){
// cout << changed_vector_jacoby[i] << " ";
// }
//НОРМА ПОЛУЧЕННОЙ МАТРИЦЫ
norm_jacobyC = norm_matrix(result_convinient_matrix_jacoby);
return result_convinient_matrix_jacoby;
}