Package org.drip.specialfunction.bessel
Class SecondNISTSeries
java.lang.Object
org.drip.specialfunction.bessel.SecondNISTSeries
public class SecondNISTSeries
extends java.lang.Object
SecondNISTSeries implements the Series for the Cylindrical Bessel Function of the Second Kind using
the NIST Series. 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
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 SecondNISTSeries()
-
Method Summary
Modifier and Type Method Description static R2ToR1Series
SecondKind(R1ToR1 digammaEstimator, R1ToR1 gammaEstimator, int termCount)
Construct the R2 To R1 Bessel Second Kind NIST Summation SeriesMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
SecondNISTSeries
public SecondNISTSeries()
-
-
Method Details
-
SecondKind
public static final R2ToR1Series SecondKind(R1ToR1 digammaEstimator, R1ToR1 gammaEstimator, int termCount)Construct the R2 To R1 Bessel Second Kind NIST Summation Series- Parameters:
digammaEstimator
- Digamma Function EstimatorgammaEstimator
- The Gamma EstimatortermCount
- Count of the Number of Terms- Returns:
- The R2 To R1 Bessel Second Kind NIST Summation Series
-