-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculation_partial_choice.cpp
38 lines (29 loc) · 1.17 KB
/
calculation_partial_choice.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
#include "calculation_partial_choice.h"
vector<vector<double>> calculation_partial_choice(vector<vector<double>> matrix){
for (int i = 0; i < matrix.size() - 1; 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 j = 1 + i; j < matrix.size(); j ++){
double temp = matrix[j][i];
for (int m = 0; m < matrix[0].size(); m++){
matrix[j][m] += - matrix[i][m] * temp/ matrix[i][i];
if ((fabs(matrix[j][m]) < EPSILON) && (j != m)){
matrix[j][m] = 0;
}
}
}
}
return matrix;
};