Open CASCADE Technology
7.0.0
|
This class implements an algorithm which finds all the real roots of a function with derivative within a given range. Knowledge of the derivative is required. More...
#include <math_FunctionRoots.hxx>
Public Member Functions | |
math_FunctionRoots (math_FunctionWithDerivative &F, const Standard_Real A, const Standard_Real B, const Standard_Integer NbSample, const Standard_Real EpsX=0.0, const Standard_Real EpsF=0.0, const Standard_Real EpsNull=0.0, const Standard_Real K=0.0) | |
Calculates all the real roots of a function F-K within the range A..B. whithout conditions on A and B A solution X is found when abs(Xi - Xi-1) <= Epsx and abs(F(Xi)-K) <= EpsF. The function is considered as null between A and B if abs(F-K) <= EpsNull within this range. More... | |
Standard_Boolean | IsDone () const |
Returns true if the computations are successful, otherwise returns false. More... | |
Standard_Boolean | IsAllNull () const |
returns true if the function is considered as null between A and B. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false). More... | |
Standard_Integer | NbSolutions () const |
Returns the number of solutions found. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false). More... | |
Standard_Real | Value (const Standard_Integer Nieme) const |
Returns the Nth value of the root of function F. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false). More... | |
Standard_Integer | StateNumber (const Standard_Integer Nieme) const |
returns the StateNumber of the Nieme root. Exception RangeError is raised if Nieme is < 1 or Nieme > NbSolutions. More... | |
void | Dump (Standard_OStream &o) const |
Prints on the stream o information on the current state of the object. More... | |
This class implements an algorithm which finds all the real roots of a function with derivative within a given range. Knowledge of the derivative is required.
math_FunctionRoots::math_FunctionRoots | ( | math_FunctionWithDerivative & | F, |
const Standard_Real | A, | ||
const Standard_Real | B, | ||
const Standard_Integer | NbSample, | ||
const Standard_Real | EpsX = 0.0 , |
||
const Standard_Real | EpsF = 0.0 , |
||
const Standard_Real | EpsNull = 0.0 , |
||
const Standard_Real | K = 0.0 |
||
) |
Calculates all the real roots of a function F-K within the range A..B. whithout conditions on A and B A solution X is found when abs(Xi - Xi-1) <= Epsx and abs(F(Xi)-K) <= EpsF. The function is considered as null between A and B if abs(F-K) <= EpsNull within this range.
void math_FunctionRoots::Dump | ( | Standard_OStream & | o | ) | const |
Prints on the stream o information on the current state of the object.
Standard_Boolean math_FunctionRoots::IsAllNull | ( | ) | const |
returns true if the function is considered as null between A and B. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false).
Standard_Boolean math_FunctionRoots::IsDone | ( | ) | const |
Returns true if the computations are successful, otherwise returns false.
Standard_Integer math_FunctionRoots::NbSolutions | ( | ) | const |
Returns the number of solutions found. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false).
Standard_Integer math_FunctionRoots::StateNumber | ( | const Standard_Integer | Nieme | ) | const |
returns the StateNumber of the Nieme root. Exception RangeError is raised if Nieme is < 1 or Nieme > NbSolutions.
Standard_Real math_FunctionRoots::Value | ( | const Standard_Integer | Nieme | ) | const |
Returns the Nth value of the root of function F. Exceptions StdFail_NotDone if the algorithm fails (and IsDone returns false).