Package org.drip.function.r1tor1solver
Class FixedPointFinderNewton
java.lang.Object
org.drip.function.r1tor1solver.FixedPointFinder
org.drip.function.r1tor1solver.FixedPointFinderNewton
public class FixedPointFinderNewton extends FixedPointFinder
FixedPointFinderNewton customizes the FixedPointFinder for Open (Newton's) fixed point finder
functionality.
FixedPointFinderNewton applies the following customization:
FixedPointFinderNewton applies the following customization:
- Initializes the fixed point finder by computing a starting variate in the convergence zone
- Iterating the next search variate using the Newton's method.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd To Rd Function Analysis
- Package = Built-in R1 To R1 Solvers
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description FixedPointFinderNewton(double dblOFGoal, R1ToR1 of, boolean bWhine)
FixedPointFinderNewton constructor -
Method Summary
Methods inherited from class org.drip.function.r1tor1solver.FixedPointFinder
findRoot, findRoot
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
FixedPointFinderNewton
public FixedPointFinderNewton(double dblOFGoal, R1ToR1 of, boolean bWhine) throws java.lang.ExceptionFixedPointFinderNewton constructor- Parameters:
dblOFGoal
- OF Goalof
- Objective FunctionbWhine
- TRUE - Balk on Encountering Exception- Throws:
java.lang.Exception
- Propogated from underneath
-