libnumerixpp  0.1.3
A Powerful C++ Library for High-Performance Numerical Computing
equations.hpp File Reference

Mathematics utils for equations. More...

Go to the source code of this file.

Namespaces

 mathematics
 Basic mathematics utils.
 
 mathematics::equations
 namespace for equation solving namespace
 

Functions

auto mathematics::equations::successive_approximations_finding_root (double(*f_eq)(double), double x0, int n) -> double
 Function for solving equations by the method of successive approximations. More...
 
auto mathematics::equations::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. More...
 
auto mathematics::equations::f_eq (double x) -> double
 Function f for determining the right side of solved equations. More...
 
auto mathematics::equations::g_eq (double x) -> double
 Function g for determining the right side of solved equations. More...
 
auto mathematics::equations::h_eq (double x) -> double
 Function h for determining the right side of solved equations. More...
 
auto mathematics::equations::f_hd_eq (double x) -> double
 Function f for determining the right side of solved equations (half division) More...
 
auto mathematics::equations::g_hd_eq (double x) -> double
 Function g for determining the right side of solved equations (half division) More...
 
auto mathematics::equations::h_hg_eq (double x) -> double
 Function h for determining the right side of solved equations (half division) More...
 

Detailed Description

Mathematics utils for equations.

Authors
alxvdev