Package org.drip.sample.numerical
Class FixedPointSearch
java.lang.Object
org.drip.sample.numerical.FixedPointSearch
public class FixedPointSearch
extends java.lang.Object
FixedPointSearch contains a sample illustration of usage of the Root Finder Library. It
demonstrates the fixed point extraction using the following techniques:
- Newton-Raphson method
- Bisection Method
- False Position
- Quadratic Interpolation
- Inverse Quadratic Interpolation
- Ridder's method
- Brent's method
- Zheng's method
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = DROP API Construction and Usage
- Package = Search, Quadratures, Fourier Phase Tracker
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description FixedPointSearch()
-
Method Summary
Modifier and Type Method Description static void
main(java.lang.String[] astrArgs)
Entry PointMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
FixedPointSearch
public FixedPointSearch()
-
-
Method Details
-
main
public static final void main(java.lang.String[] astrArgs)Entry Point- Parameters:
astrArgs
- Command Line Argument Array
-