Package org.drip.specialfunction.bessel
Class SphericalFirstEstimator
java.lang.Object
org.drip.specialfunction.definition.SphericalBesselFirstKindEstimator
org.drip.specialfunction.bessel.SphericalFirstEstimator
- All Implemented Interfaces:
R2ToR1
public class SphericalFirstEstimator extends SphericalBesselFirstKindEstimator
SphericalFirstEstimator implements the Integral Estimator for the Spherical 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
- Retrieve the Order 0 Spherical Bessel First Kind Estimator
- Retrieve the Order -1 Spherical Bessel First Kind Estimator
- Retrieve the Order +1 Spherical Bessel First Kind Estimator
- Retrieve the Order -1 Spherical Bessel First Kind Estimator
- Retrieve the Order +2 Spherical Bessel First Kind Estimator
- Retrieve the Order -2 Spherical Bessel First Kind Estimator
- Retrieve the Order +3 Spherical Bessel First Kind Estimator
- Retrieve the Order -3 Spherical Bessel First Kind Estimator
- Retrieve the Order -4 Spherical Bessel First Kind Estimator
- SphericalFirstEstimator Constructor
- Retrieve the Bessel Function First 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 SphericalFirstEstimator(BesselFirstKindEstimator besselFirstKindEstimator)
SphericalFirstEstimator Constructor -
Method Summary
Modifier and Type Method Description BesselFirstKindEstimator
besselFirstKindEstimator()
Retrieve the Bessel Function First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderMinusFour()
Retrieve the Order -4 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderMinusOne()
Retrieve the Order -1 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderMinusThree()
Retrieve the Order -3 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderMinusTwo()
Retrieve the Order -2 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderPlusOne()
Retrieve the Order +1 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderPlusThree()
Retrieve the Order +3 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderPlusTwo()
Retrieve the Order +2 Spherical Bessel First Kind Estimatorstatic SphericalBesselFirstKindEstimator
OrderZero()
Retrieve the Order 0 Spherical Bessel First Kind Estimatordouble
smallJ(double alpha, double z)
Evaluate Spherical Bessel Function First Kind j given Alpha and zMethods inherited from class org.drip.specialfunction.definition.SphericalBesselFirstKindEstimator
evaluate
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SphericalFirstEstimator
public SphericalFirstEstimator(BesselFirstKindEstimator besselFirstKindEstimator) throws java.lang.ExceptionSphericalFirstEstimator Constructor- Parameters:
besselFirstKindEstimator
- Bessel Function First Kind Estimator- Throws:
java.lang.Exception
- Thrown if Inputs are Invalid
-
-
Method Details
-
OrderZero
Retrieve the Order 0 Spherical Bessel First Kind Estimator- Returns:
- The Order 0 Spherical Bessel First Kind Estimator
-
OrderPlusOne
Retrieve the Order +1 Spherical Bessel First Kind Estimator- Returns:
- The Order +1 Spherical Bessel First Kind Estimator
-
OrderMinusOne
Retrieve the Order -1 Spherical Bessel First Kind Estimator- Returns:
- The Order -1 Spherical Bessel First Kind Estimator
-
OrderPlusTwo
Retrieve the Order +2 Spherical Bessel First Kind Estimator- Returns:
- The Order +2 Spherical Bessel First Kind Estimator
-
OrderMinusTwo
Retrieve the Order -2 Spherical Bessel First Kind Estimator- Returns:
- The Order -2 Spherical Bessel First Kind Estimator
-
OrderPlusThree
Retrieve the Order +3 Spherical Bessel First Kind Estimator- Returns:
- The Order +3 Spherical Bessel First Kind Estimator
-
OrderMinusThree
Retrieve the Order -3 Spherical Bessel First Kind Estimator- Returns:
- The Order -3 Spherical Bessel First Kind Estimator
-
OrderMinusFour
Retrieve the Order -4 Spherical Bessel First Kind Estimator- Returns:
- The Order -4 Spherical Bessel First Kind Estimator
-
smallJ
public double smallJ(double alpha, double z) throws java.lang.ExceptionDescription copied from class:SphericalBesselFirstKindEstimator
Evaluate Spherical Bessel Function First Kind j given Alpha and z- Specified by:
smallJ
in classSphericalBesselFirstKindEstimator
- Parameters:
alpha
- Alphaz
- Z- Returns:
- Spherical Bessel Function First Kind j Value
- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
besselFirstKindEstimator
Retrieve the Bessel Function First Kind Estimator- Returns:
- Bessel Function First Kind Estimator
-