libnumerixpp  0.1.1
A Powerful C++ Library for High-Performance Numerical Computing
equations.hpp
Go to the documentation of this file.
1 
6 #ifndef LIBNUMERIXPP_MATHEMATICS_EQUATIONS_HPP
7 #define LIBNUMERIXPP_MATHEMATICS_EQUATIONS_HPP
8 
9 #pragma once
10 
15 namespace mathematics::equations {
16 
37 double successiveApproximationsFindingRoot(double (*f_eq)(double), double x0, int n);
38 
46 double f_eq(double x);
47 
55 double g_eq(double x);
56 
64 double h_eq(double x);
65 } // namespace mathematics::equations
66 
67 #endif // LIBNUMERIXPP_MATHEMATICS_EQUATIONS_HPP
namespace for equation solving namespace
Definition: equations.cpp:8
double successiveApproximationsFindingRoot(double(*f_eq)(double), double x0, int n)
Function for solving equations by the method of successive approximations.
Definition: equations.cpp:9
double h_eq(double x)
Function h for determining the right side of solved equations.
Definition: equations.cpp:23
double f_eq(double x)
Function f for determining the right side of solved equations.
Definition: equations.cpp:19
double g_eq(double x)
Function g for determining the right side of solved equations.
Definition: equations.cpp:21