Mathematical minimum on a compact interval for linear functions. More...
#include <polynomial.hpp>
Public Member Functions | |
ECL_PUBLIC double | operator() (const double &x_begin, const double &x_end, const LinearFunction &function) |
Returns the minimum of a linear function. | |
virtual | ~Minimum () |
Mathematical minimum on a compact interval for linear functions.
Mathematical minimum on a compact interval for linear functions (first order polynomials).
Definition at line 1039 of file polynomial.hpp.
virtual ecl::Minimum< LinearFunction >::~Minimum | ( | ) | [inline, virtual] |
Definition at line 1052 of file polynomial.hpp.
double ecl::Minimum< LinearFunction >::operator() | ( | const double & | x_begin, |
const double & | x_end, | ||
const LinearFunction & | function | ||
) |
Returns the minimum of a linear function.
Returns the minimum of the specified linear function on the given compact interval.
x_begin | : beginning of the compact interval. |
x_end | : end of the compact interval. |
function | : the linear function. |
Definition at line 222 of file polynomial.cpp.