Bisection
bisect.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <functional> // function; C++11
4 
24  double Bisect(const std::function<double(double)>& func,
25  const double a, const double b, const double eps);
double Bisect(const std::function< double(double)> &func, const double a, const double b, const double eps)
Returns one solution for the equation with .
Definition: bisect.cpp:6
b
Definition: bisect.m:4
a
Definition: bisect.m:3