org.matheclipse.commons.math.analysis.solvers
Class NewtonSolver
- java.lang.Object
-
- org.apache.commons.math3.analysis.solvers.BaseAbstractUnivariateSolver<DifferentiableUnivariateFunction>
-
- org.matheclipse.commons.math.analysis.solvers.AbstractDifferentiableUnivariateSolver
-
- org.matheclipse.commons.math.analysis.solvers.NewtonSolver
-
- All Implemented Interfaces:
- BaseUnivariateSolver<DifferentiableUnivariateFunction>, DifferentiableUnivariateSolver
public class NewtonSolver extends AbstractDifferentiableUnivariateSolver
Implements Newton's Method for finding zeros of real univariate functions.The function should be continuous but not necessarily smooth.
-
-
Constructor Summary
Constructors Constructor and Description NewtonSolver()Construct a solver.NewtonSolver(double absoluteAccuracy)Construct a solver.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description doublesolve(int maxEval, DifferentiableUnivariateFunction f, double min, double max)Find a zero near the midpoint ofminandmax.-
Methods inherited from class org.apache.commons.math3.analysis.solvers.BaseAbstractUnivariateSolver
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMax, getMaxEvaluations, getMin, getRelativeAccuracy, getStartValue, solve, solve
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.commons.math3.analysis.solvers.BaseUnivariateSolver
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMaxEvaluations, getRelativeAccuracy, solve, solve
-
-
-
-
Constructor Detail
-
NewtonSolver
public NewtonSolver()
Construct a solver.
-
NewtonSolver
public NewtonSolver(double absoluteAccuracy)
Construct a solver.- Parameters:
absoluteAccuracy- Absolute accuracy.
-
-
Method Detail
-
solve
public double solve(int maxEval, DifferentiableUnivariateFunction f, double min, double max) throws TooManyEvaluationsExceptionFind a zero near the midpoint ofminandmax.- Specified by:
solvein interfaceBaseUnivariateSolver<DifferentiableUnivariateFunction>- Overrides:
solvein classBaseAbstractUnivariateSolver<DifferentiableUnivariateFunction>- Parameters:
f- Function to solve.min- Lower bound for the interval.max- Upper bound for the interval.maxEval- Maximum number of evaluations.- Returns:
- the value where the function is zero.
- Throws:
TooManyEvaluationsException- if the maximum evaluation count is exceeded.NumberIsTooLargeException- ifmin >= max.
-
-
DMelt 3.0 © DataMelt by jWork.ORG