6 #ifndef LIBNUMERIXPP_MATHEMATICS_EQUATIONS_HPP
7 #define LIBNUMERIXPP_MATHEMATICS_EQUATIONS_HPP
66 auto f_eq(
double x) -> double;
75 auto g_eq(
double x) -> double;
84 auto h_eq(
double x) -> double;
94 auto f_hd_eq(
double x) -> double;
104 auto g_hd_eq(
double x) -> double;
114 auto h_hg_eq(
double x) -> double;
namespace for equation solving namespace
Definition: equations.cpp:8
auto h_eq(double x) -> double
Function h for determining the right side of solved equations.
Definition: equations.cpp:59
auto h_hg_eq(double x) -> double
Function h for determining the right side of solved equations (half division)
Definition: equations.cpp:53
auto half_division_finding_root(double(*f_hd_eq)(double), double a, double b, double dx) -> double
Function for solving equations by the method of half division.
Definition: equations.cpp:20
auto successive_approximations_finding_root(double(*f_eq)(double), double x0, int n) -> double
Function for solving equations by the method of successive approximations.
Definition: equations.cpp:9
auto f_eq(double x) -> double
Function f for determining the right side of solved equations.
Definition: equations.cpp:55
auto g_hd_eq(double x) -> double
Function g for determining the right side of solved equations (half division)
Definition: equations.cpp:51
auto g_eq(double x) -> double
Function g for determining the right side of solved equations.
Definition: equations.cpp:57
auto f_hd_eq(double x) -> double
Function f for determining the right side of solved equations (half division)
Definition: equations.cpp:49