-
Notifications
You must be signed in to change notification settings - Fork 0
/
MAIN.cpp
153 lines (128 loc) · 5.1 KB
/
MAIN.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include "includes.h"
#include "func.h"
#include "localize.h"
#include "bisection.h"
#include "derivative.h"
#include "method_newton.h"
#include "method_chords.h"
int main() {
Function f1;
f1.f = func3;
//f1.f = func_new_sqr;
//f1.f = func_new_cube;
f1.limits = make_pair(0, 1);//границы
f1.table_init = f1.f(f1.div_count, mass_x(f1.div_count, f1.limits), f1.table_init);
cout << "--------------------------------Разбили на отрезки--------------" << endl;
for (const auto &v:f1.table_init){
cout << v.first << " "<< v.second << endl;
}
cout << "---------------------Локализовали корни---------------------------------" << endl;
//найдем отрезки локализации
//double (*fn)(double) = function_new_cube;
//double (*fn)(double) = function_new_sqr;
double (*fn)(double) = function3;
vector<double> sol;//вектор, содержащий корнеь
vector<pair<double,double>> area = Local(f1.table_init, fn, sol);
if (area.size() == 0){
cout << "На всей области определения функция >= 0" << endl;
area.push_back(f1.limits);
}
else{
for (const auto &v:area){
cout << v.first << " "<< v.second << endl;
}
}
//найдем корни
cout << "---------------------Корни уравнения---------------------------------" << endl;
vector<double> roots = search_bisec(area, fn);
for (const auto &n : roots){
cout << n << " ";
}
cout << endl;
cout << "Погрешность = " << fabs(1 - roots[0]) << endl;
cout << "----------------------Решение уравнения методом Ньютона-----------------------" << endl;
//double (*f_derivative)(double) = analytic_func_cube;
//double (*f_derivative)(double) = analytic_func_sqr;
double (*f_derivative)(double) = analytic_func3;
area[0].first = 0;
area[0].second = 1;
vector<double> solution = newton_equation(area,fn, f_derivative);
for (const auto &n : solution){
cout << n << " ";
}
cout << endl;
cout << "Погрешность = " << fabs(1 - solution[0]) << endl;
cout << "-----------------------Решение систем---------------------------------" << endl;
vector<double> (*func_system)(double, double) = function4;
vector<vector<double>>(*func_jacoby)(double,double) = numeric_func_jacoby4;
pair<double, double> point;
//Выбераем рандомную точку из заданной области
double limit = 10;
point.first = random(-limit,limit);
point.second = random(-limit,limit);
point.first = 3;
point.second = 0;
cout<< "Начальная точка = " << point.first << " " << point.second << endl;
int i = 0;
pair<double, double> system_sol = newton(point, func_system, func_jacoby,i, limit);
cout << "Кол-во итераций = " << i << endl;
cout << left << setw(15) << setprecision(6) << fixed << system_sol.first << " " << left << setw(40) << setprecision(40) << fixed <<system_sol.second << endl;
cout << "--------------------------------Невязка---------------------------------------"<< endl;
double nevyazka = discrepancy_function4(system_sol);
cout << nevyazka << endl;
cout << "-------------------------------Погрешность-------------------------------------" << endl;
double error = error_4_1(system_sol);
cout << error << endl;
//Сетка
// double L1 = 10;
// double L2 = 10;
// int N = 21;//число ячеек секти
// double h = 1;//шаг
// vector<vector<pair<double,double>>> mesh(N, vector<pair<double,double>>(N));
// // for (int i = 0; i < N; i ++){
// // for (int j = 0; j < N; j ++){
// // mesh[N-1 - i][j].first = -L1 + j * h;
// // mesh[N - 1- i][j].second = -L2 + i * h;
// // }
// // }
// for (int i = 0; i < N; i ++){
// for (int j = 0; j < N; j ++){
// mesh[i][j].first = -L1 + j * h;
// mesh[i][j].second = -L2 + i * h;
// }
// }
// //Матрица кол-ва итераций
// vector<vector<int>> matrix_iter(N, vector<int>(N));
// for (int i = 0; i < N; i++){
// for (int j = 0; j < N; j++){
// point.first = mesh[i][j].first;
// point.second = mesh[i][j].second;
// cout<< "Начальная точка = " << point.first << " " << point.second << endl;
// int counter = 0;// Счетчик кол-ва итераций
// pair<double, double> system_sol = newton(point, func_system, func_jacoby, counter, limit);
// cout << "Решение"<< system_sol.first << " " << system_sol.second << endl;
// matrix_iter[i][j] = counter;
// }
// }
// //Записываем в файл кол-во итераций
// string name = "matr.dat";
// ofstream fout(name);
// for (int i = 0; i < N; i ++){
// for (int j = 0; j < N; j++){
// fout << matrix_iter[i][j] << "\t" ;
// }
// fout << endl;
// }
// fout.close();
// //Записываем в файл координатную сетку
// name = "coord.dat";
// ofstream fout_coord(name);
// for (int i = 0; i < N; i ++){
// for (int j = 0; j < N; j++){
// fout_coord << mesh[i][j].first << " " << mesh[i][j].second << "\t" ;
// }
// fout_coord << endl;
// }
// fout_coord.close();
return 0;
}