Package org.drip.function.e2erf
Class AbramowitzStegunSeriesGenerator
java.lang.Object
org.drip.function.definition.R1ToR1
org.drip.numerical.estimation.RkToR1Series
org.drip.numerical.estimation.R1ToR1Series
org.drip.function.e2erf.AbramowitzStegunSeriesGenerator
public class AbramowitzStegunSeriesGenerator extends R1ToR1Series
AbramowitzStegunSeriesGenerator implements the E2 erf Abramowitz-Stegun Variant of
Series Term Generator. The References are:
- Abramowitz, M., and I. A. Stegun (2007): Handbook of Mathematics Functions Dover Book on Mathematics
- Chang, S. H., P. C. Cosman, L. B. Milstein (2011): Chernoff-Type Bounds for Gaussian Error Function IEEE Transactions on Communications 59 (11) 2939-2944
- Cody, W. J. (1991): Algorithm 715: SPECFUN – A Portable FORTRAN Package of Special Function Routines and Test Drivers ACM Transactions on Mathematical Software 19 (1) 22-32
- Schopf, H. M., and P. H. Supancic (2014): On Burmann’s Theorem and its Application to Problems of Linear and Non-linear Heat Transfer and Diffusion https://www.mathematica-journal.com/2014/11/on-burmanns-theorem-and-its-application-to-problems-of-linear-and-nonlinear-heat-transfer-and-diffusion/#more-39602/
- Wikipedia (2019): Error Function https://en.wikipedia.org/wiki/Error_function
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd To Rd Function Analysis
- Package = E2 erf and erf-1 Implementations
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description AbramowitzStegunSeriesGenerator(R1ToR1SeriesTerm r1ToR1SeriesTerm, java.util.TreeMap<java.lang.Integer,java.lang.Double> termWeightMap)AbramowitzStegunSeriesGenerator Constructor -
Method Summary
Modifier and Type Method Description static AbramowitzStegunSeriesGeneratorInversePolynomial4()Construct a Inverse Polynomial Degree 4 Version of E2 erf AbramowitzStegunSeriesGeneratorstatic AbramowitzStegunSeriesGeneratorInversePolynomial6()Construct a Inverse Polynomial Degree 6 Version of E2 erf AbramowitzStegunSeriesGeneratorstatic AbramowitzStegunSeriesGeneratorMixedPolynomial3()Construct a Mixed Polynomial Degree 3 Version of E2 erf AbramowitzStegunSeriesGeneratorstatic AbramowitzStegunSeriesGeneratorMixedPolynomial5()Construct a Mixed Polynomial Degree 5 Version of E2 erf AbramowitzStegunSeriesGeneratorstatic AbramowitzStegunSeriesGeneratorNumericalRecipe2007()Construct the Numerical Recipes Version of E2 erf AbramowitzStegunSeriesGeneratorMethods inherited from class org.drip.numerical.estimation.R1ToR1Series
cumulative, derivative, evaluate, generate, r1ToR1SeriesTermMethods inherited from class org.drip.numerical.estimation.RkToR1Series
proportional, termWeightMapMethods inherited from class org.drip.function.definition.R1ToR1
antiDerivative, conditionNumber, differential, differential, integrate, maxima, maxima, minima, minima, poleResidueMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
AbramowitzStegunSeriesGenerator
public AbramowitzStegunSeriesGenerator(R1ToR1SeriesTerm r1ToR1SeriesTerm, java.util.TreeMap<java.lang.Integer,java.lang.Double> termWeightMap) throws java.lang.ExceptionAbramowitzStegunSeriesGenerator Constructor- Parameters:
r1ToR1SeriesTerm- R1 To R1 Series Expansion TermtermWeightMap- Error Term Weight Map- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-
-
Method Details
-
InversePolynomial4
Construct a Inverse Polynomial Degree 4 Version of E2 erf AbramowitzStegunSeriesGenerator- Returns:
- Inverse Polynomial Degree 4 Version of E2 erf AbramowitzStegunSeriesGenerator
-
MixedPolynomial3
Construct a Mixed Polynomial Degree 3 Version of E2 erf AbramowitzStegunSeriesGenerator- Returns:
- Mixed Polynomial Degree 3 Version of E2 erf AbramowitzStegunSeriesGenerator
-
InversePolynomial6
Construct a Inverse Polynomial Degree 6 Version of E2 erf AbramowitzStegunSeriesGenerator- Returns:
- Inverse Polynomial Degree 6 Version of E2 erf AbramowitzStegunSeriesGenerator
-
MixedPolynomial5
Construct a Mixed Polynomial Degree 5 Version of E2 erf AbramowitzStegunSeriesGenerator- Returns:
- Mixed Polynomial Degree 5 Version of E2 erf AbramowitzStegunSeriesGenerator
-
NumericalRecipe2007
Construct the Numerical Recipes Version of E2 erf AbramowitzStegunSeriesGenerator- Returns:
- Numerical Recipes Version of E2 erf AbramowitzStegunSeriesGenerator
-