![]() |
MechSys
1.0
Computing library for simulations in continuum and discrete mechanics
|
#include <multipleroots.h>
Public Types | |
typedef double(Instance::* | pFun )(double x) const |
Callback function. | |
Public Member Functions | |
MultipleRoots (Instance const *p2Inst, pFun F, pFun G, pFun H, double Tol=sqrt(DBL_EPSILON), double Gamma=0.001) | |
void | Solve (double A, double B, Array< double > &R, bool Single=false) const |
Solve for all roots (R) in [A,B]. | |
double | NRoots (double a, double b) const |
Computes the number of roots in [a,b]. | |
void | SetTol (double Tol) |
Error tolerance. | |
void | SetGam (double Gam) |
Small positive constant. | |
void | SetQuadError (double Err) |
Quadrature Error tolerance. | |
int | Ncalls () const |
Number of calls to NRoots function. | |
int | Mcalls () const |
Number of calls to M(x) function. | |
void | ResetNcalls () |
Reset the number of calls to NRoots function. | |
void | ResetMcalls () |
Reset the number of calls to M(x) function. |
Find all roots for F(x)=0 inside [A,B]. Examples:
typedef double(Instance::* Numerical::MultipleRoots< Instance >::pFun)(double x) const |
Callback function.
Numerical::MultipleRoots< Instance >::MultipleRoots | ( | Instance const * | p2Inst, |
pFun | F, | ||
pFun | G, | ||
pFun | H, | ||
double | Tol = sqrt(DBL_EPSILON) , |
||
double | Gamma = 0.001 |
||
) | [inline] |
Constructor.
int Numerical::MultipleRoots< Instance >::Mcalls | ( | ) | const [inline] |
Number of calls to M(x) function.
int Numerical::MultipleRoots< Instance >::Ncalls | ( | ) | const [inline] |
Number of calls to NRoots function.
double Numerical::MultipleRoots< Instance >::NRoots | ( | double | a, |
double | b | ||
) | const [inline] |
Computes the number of roots in [a,b].
void Numerical::MultipleRoots< Instance >::ResetMcalls | ( | ) | [inline] |
Reset the number of calls to M(x) function.
void Numerical::MultipleRoots< Instance >::ResetNcalls | ( | ) | [inline] |
Reset the number of calls to NRoots function.
void Numerical::MultipleRoots< Instance >::SetGam | ( | double | Gam | ) | [inline] |
Small positive constant.
void Numerical::MultipleRoots< Instance >::SetQuadError | ( | double | Err | ) | [inline] |
Quadrature Error tolerance.
void Numerical::MultipleRoots< Instance >::SetTol | ( | double | Tol | ) | [inline] |
Error tolerance.
void Numerical::MultipleRoots< Instance >::Solve | ( | double | A, |
double | B, | ||
Array< double > & | R, | ||
bool | Single = false |
||
) | const [inline] |
Solve for all roots (R) in [A,B].