Uses of Class
com.irurueta.numerical.roots.RootEstimationException
Packages that use RootEstimationException
Package
Description
This package contains classes to find function roots.
- 
Uses of RootEstimationException in com.irurueta.numerical.roots
Methods in com.irurueta.numerical.roots that throw RootEstimationExceptionModifier and TypeMethodDescriptionvoidBracketedSingleRootEstimator.computeBracket()Starting at zero, this method expands the range (i.e. bracket of values) until a zero crossing is found where a root is present or until the bracket becomes unacceptably large, where an exception will be raised.voidBracketedSingleRootEstimator.computeBracket(double point) Starting from provided point, this method expands the range (i.e.voidBracketedSingleRootEstimator.computeBracket(double minEvalPoint, double maxEvalPoint) Starting from provided minimum and maximum values, this method expands the range (i.e. bracket of values) until a zero crossing is found where a root is present or until the bracket becomes unacceptably large, where an exception will be raised.voidBisectionSingleRootEstimator.estimate()Estimates a single root of the provided single dimension function contained within a given bracket of values.voidBrentSingleRootEstimator.estimate()Estimates a local root for a given single dimension function being evaluated by provided listener.voidFalsePositionSingleRootEstimator.estimate()Estimates a single root of the provided single dimension function contained within a given bracket of values.voidLaguerrePolynomialRootsEstimator.estimate()Estimates the roots of provided polynomial.voidNewtonRaphsonSingleRootEstimator.estimate()Estimates a local root for a given single dimension function being evaluated by provided listener.voidRidderSingleRootEstimator.estimate()Estimates a local root for a given single dimension function being evaluated by provided listener.voidRootEstimator.estimate()Estimates the root or roots for a given function.voidSafeNewtonRaphsonSingleRootEstimator.estimate()Estimates a local root for a given single dimension function being evaluated by provided listener.voidSecantSingleRootEstimator.estimate()Estimates a local root for a given single dimension function being evaluated by provided listener.voidSecondDegreePolynomialRootsEstimator.estimate()Estimates the roots of provided polynomial.voidThirdDegreePolynomialRootsEstimator.estimate()Estimates the roots of provided polynomial.private voidLaguerrePolynomialRootsEstimator.internalLaguer(com.irurueta.algebra.Complex[] a, com.irurueta.algebra.Complex x, int[] its) Internal method to compute a root after decomposing and decreasing the degree of the polynomial.