Package org.drip.specialfunction.bessel
Class ModifiedFirstHankelAsymptoteEstimator
java.lang.Object
org.drip.specialfunction.definition.ModifiedBesselFirstKindEstimator
org.drip.specialfunction.bessel.ModifiedFirstHankelAsymptoteEstimator
- All Implemented Interfaces:
R2ToR1
public class ModifiedFirstHankelAsymptoteEstimator extends ModifiedBesselFirstKindEstimator
ModifiedFirstHankelAsymptoteEstimator implements the Hankel Large z Asymptote Series Estimator for
the Modified Bessel Function of the First Kind. The References are:
- Abramowitz, M., and I. A. Stegun (2007): Handbook of Mathematics Functions Dover Book on Mathematics
- Arfken, G. B., and H. J. Weber (2005): Mathematical Methods for Physicists 6th Edition Harcourt San Diego
- Temme N. M. (1996): Special Functions: An Introduction to the Classical Functions of Mathematical Physics 2nd Edition Wiley New York
- Watson, G. N. (1995): A Treatise on the Theory of Bessel Functions Cambridge University Press
- Wikipedia (2019): Bessel Function https://en.wikipedia.org/wiki/Bessel_function
- Construct a Standard Instance of Bessel ModifiedFirstHankelAsymptoteEstimator
- Retrieve the Hankel Asymptote Series
Module | Product Core Module |
Library | Fixed Income Analytics |
Project | Special Function Implementation and Analysis |
Package | Ordered Bessel Function Variant Estimators |
- Author:
- Lakshmi Krishnamurthy
-
Method Summary
Modifier and Type Method Description double
bigI(double alpha, double z)
Evaluate Modified Bessel Function First Kind I given Alpha and zR2ToR1Series
hankelAsymptoteSeries()
Retrieve the Hankel Asymptote Seriesstatic ModifiedFirstHankelAsymptoteEstimator
Standard(int termCount)
Construct a Standard Instance of Bessel ModifiedFirstHankelAsymptoteEstimatorMethods inherited from class org.drip.specialfunction.definition.ModifiedBesselFirstKindEstimator
AlphaPositiveAsymptote, evaluate
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
Standard
Construct a Standard Instance of Bessel ModifiedFirstHankelAsymptoteEstimator- Parameters:
termCount
- Count of the Number of Terms- Returns:
- The Standard Instance of Bessel ModifiedFirstHankelAsymptoteEstimator
-
hankelAsymptoteSeries
Retrieve the Hankel Asymptote Series- Returns:
- The Hankel Asymptote Series
-
bigI
public double bigI(double alpha, double z) throws java.lang.ExceptionDescription copied from class:ModifiedBesselFirstKindEstimator
Evaluate Modified Bessel Function First Kind I given Alpha and z- Specified by:
bigI
in classModifiedBesselFirstKindEstimator
- Parameters:
alpha
- Alphaz
- Z- Returns:
- Modified Bessel Function First Kind I Value
- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-