Uses of Interface
com.opengamma.strata.math.impl.rootfinding.SingleRootFinder
-
Packages that use SingleRootFinder Package Description com.opengamma.strata.math.impl.rootfinding com.opengamma.strata.math.impl.rootfinding.newton -
-
Uses of SingleRootFinder in com.opengamma.strata.math.impl.rootfinding
Classes in com.opengamma.strata.math.impl.rootfinding that implement SingleRootFinder Modifier and Type Class Description classBisectionSingleRootFinderFinds a single root of a function using the bisection method.classBrentSingleRootFinderRoot finder.classNewtonRaphsonSingleRootFinderClass for finding the real root of a function within a range of $x$-values using the one-dimensional version of Newton's method.classRealSingleRootFinderParent class for root-finders that find a single real root $x$ for a function $f(x)$.classRidderSingleRootFinderFinds a single root of a function using Ridder's method.classVectorRootFinderParent class for root-finders that calculate a root for a vector function (i.e. -
Uses of SingleRootFinder in com.opengamma.strata.math.impl.rootfinding.newton
Classes in com.opengamma.strata.math.impl.rootfinding.newton that implement SingleRootFinder Modifier and Type Class Description classBaseNewtonVectorRootFinderBase implementation for all Newton-Raphson style multi-dimensional root finding (i.e.classBroydenVectorRootFinderA root finder using Broyden's Jacobian update formula.classNewtonDefaultVectorRootFinderA root finder that attempts find the multi-dimensional root of a series of N equations with N variables (a square problem).classShermanMorrisonVectorRootFinderA root finder that uses the Sherman-Morrison formula to invert Broyden's Jacobian update formula, thus providing a direct update formula for the inverse Jacobian.
-