#include "Math/BrentMethods.h"
#include "Math/IFunction.h"
#include <cmath>
#include <algorithm>
#include "Math/Error.h"
#include <iostream>
Go to the source code of this file.
Namespaces | |
namespace | ROOT |
namespace | ROOT::Math |
namespace | ROOT::Math::BrentMethods |
Functions | |
double | ROOT::Math::BrentMethods::MinimStep (const IGenFunction *f, int type, double &xmin, double &xmax, double fy, int npx=100, bool useLog=false) |
double | ROOT::Math::BrentMethods::MinimBrent (const IGenFunction *f, int type, double &xmin, double &xmax, double xmiddle, double fy, bool &ok, int &niter, double epsabs=1.E-8, double epsrel=1.E-10, int maxiter=100) |