Package org.drip.specialfunction.bessel
Class SphericalSecondEstimator
java.lang.Object
org.drip.specialfunction.definition.SphericalBesselSecondKindEstimator
org.drip.specialfunction.bessel.SphericalSecondEstimator
- All Implemented Interfaces:
R2ToR1
public class SphericalSecondEstimator extends SphericalBesselSecondKindEstimator
SphericalSecondEstimator implements the Integral Estimator for the Spherical Bessel Function of the
Second 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
- Retrieve the Order 0 Spherical Bessel Second Kind Estimator
- Retrieve the Order +2 Spherical Bessel Second Kind Estimator
- Retrieve the Order +3 Spherical Bessel Second Kind Estimator
- SphericalSecondEstimator Constructor
- Retrieve the Bessel Function Second Kind Estimator
Module | Product Core Module |
Library | Fixed Income Analytics |
Project | Special Function Implementation and Analysis |
Package | Ordered Bessel Function Variant Estimators |
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description SphericalSecondEstimator(BesselSecondKindEstimator besselSecondKindEstimator)
SphericalSecondEstimator Constructor -
Method Summary
Modifier and Type Method Description BesselSecondKindEstimator
besselSecondKindEstimator()
Retrieve the Bessel Function Second Kind Estimatorstatic SphericalBesselSecondKindEstimator
OrderPlusOne()
Retrieve the Order +1 Spherical Bessel Second Kind Estimatorstatic SphericalBesselSecondKindEstimator
OrderPlusThree()
Retrieve the Order +3 Spherical Bessel Second Kind Estimatorstatic SphericalBesselSecondKindEstimator
OrderPlusTwo()
Retrieve the Order +2 Spherical Bessel Second Kind Estimatorstatic SphericalBesselSecondKindEstimator
OrderZero()
Retrieve the Order 0 Spherical Bessel Second Kind Estimatordouble
smallY(double alpha, double z)
Evaluate Spherical Bessel Function Second Kind y given Alpha and zMethods inherited from class org.drip.specialfunction.definition.SphericalBesselSecondKindEstimator
evaluate
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SphericalSecondEstimator
public SphericalSecondEstimator(BesselSecondKindEstimator besselSecondKindEstimator) throws java.lang.ExceptionSphericalSecondEstimator Constructor- Parameters:
besselSecondKindEstimator
- Bessel Function Second Kind Estimator- Throws:
java.lang.Exception
- Thrown if Inputs are Invalid
-
-
Method Details
-
OrderZero
Retrieve the Order 0 Spherical Bessel Second Kind Estimator- Returns:
- The Order 0 Spherical Bessel Second Kind Estimator
-
OrderPlusOne
Retrieve the Order +1 Spherical Bessel Second Kind Estimator- Returns:
- The Order +1 Spherical Bessel Second Kind Estimator
-
OrderPlusTwo
Retrieve the Order +2 Spherical Bessel Second Kind Estimator- Returns:
- The Order +2 Spherical Bessel Second Kind Estimator
-
OrderPlusThree
Retrieve the Order +3 Spherical Bessel Second Kind Estimator- Returns:
- The Order +3 Spherical Bessel Second Kind Estimator
-
smallY
public double smallY(double alpha, double z) throws java.lang.ExceptionDescription copied from class:SphericalBesselSecondKindEstimator
Evaluate Spherical Bessel Function Second Kind y given Alpha and z- Specified by:
smallY
in classSphericalBesselSecondKindEstimator
- Parameters:
alpha
- Alphaz
- Z- Returns:
- Spherical Bessel Function Second Kind y Value
- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
besselSecondKindEstimator
Retrieve the Bessel Function Second Kind Estimator- Returns:
- Bessel Function Second Kind Estimator
-