Package org.drip.numerical.integration
Class AbscissaTransform
java.lang.Object
org.drip.numerical.integration.AbscissaTransform
public class AbscissaTransform
extends java.lang.Object
AbscissaTransform transforms the Abscissa over into Corresponding Integrand Variable. The
References are:
- Briol, F. X., C. J. Oates, M. Girolami, and M. A. Osborne (2015): Frank-Wolfe Bayesian Quadrature: Probabilistic Integration with Theoretical Guarantees arXiv
- Forsythe, G. E., M. A. Malcolm, and C. B. Moler (1977): Computer Methods for Mathematical Computation Prentice Hall Englewood Cliffs NJ
- Leader, J. J. (2004): Numerical Analysis and Scientific Computation Addison Wesley
- Stoer, J., and R. Bulirsch (1980): Introduction to Numerical Analysis Springer-Verlag New York
- Wikipedia (2019): Numerical Integration https://en.wikipedia.org/wiki/Numerical_integration
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Numerical Quadrature, Differentiation, Eigenization, Linear Algebra, and Utilities
- Package = R1 Rd Numerical Integration Schemes
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description AbscissaTransform(R1ToR1 r1ToR1VariateChange, R1ToR1 r1PointValueScale, double quadratureScale)AbscissaTransform Constructor -
Method Summary
Modifier and Type Method Description static AbscissaTransformDisplaceAndScaleMinusOne_PlusOne(double left, double right)Generate the Scaled and Displaced Abscissa Transform from (left, right) To (-1, +1)static AbscissaTransformDisplaceAndScaleZero_PlusOne(double left, double right)Generate the Scaled and Displaced Abscissa Transform from (left, right) To (0, +1)static AbscissaTransformGaussHermite()Generate the Gauss-Hermite Abscissa Transformstatic AbscissaTransformGaussLaguerreLeftDefinite(double left)Generate the Gauss-Laguerre Abscissa Transform for Integrals in [a, +Infinity]static AbscissaTransformGaussLaguerreRightDefinite(double right)Generate the Gauss-Laguerre Abscissa Transform for Integrals in [-Infinity, a]R1ToR1pointValueScale()Retrieve the R1 Point Value Scale FunctiondoublequadratureScale()Retrieve the Quadrature ScaleR1ToR1variateChange()Retrieve the R1 to R1 Variate Change FunctionMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
AbscissaTransform
public AbscissaTransform(R1ToR1 r1ToR1VariateChange, R1ToR1 r1PointValueScale, double quadratureScale) throws java.lang.ExceptionAbscissaTransform Constructor- Parameters:
r1ToR1VariateChange- R1 to R1 Variate Change Functionr1PointValueScale- R1 Point Value Scale FunctionquadratureScale- Quadrature Scale- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-
-
Method Details
-
DisplaceAndScaleZero_PlusOne
Generate the Scaled and Displaced Abscissa Transform from (left, right) To (0, +1)- Parameters:
left- Span Leftright- Span Right- Returns:
- The Scaled and Displaced Abscissa Transform from (left, right) To (0, +1)
-
DisplaceAndScaleMinusOne_PlusOne
Generate the Scaled and Displaced Abscissa Transform from (left, right) To (-1, +1)- Parameters:
left- Span Leftright- Span Right- Returns:
- The Scaled and Displaced Abscissa Transform from (left, right) To (-1, +1)
-
GaussHermite
Generate the Gauss-Hermite Abscissa Transform- Returns:
- The Gauss-Hermite Abscissa Transform
-
GaussLaguerreLeftDefinite
Generate the Gauss-Laguerre Abscissa Transform for Integrals in [a, +Infinity]- Parameters:
left- Span Left- Returns:
- The Gauss-Laguerre Abscissa Transform for Integrals in [a, +Infinity]
-
GaussLaguerreRightDefinite
Generate the Gauss-Laguerre Abscissa Transform for Integrals in [-Infinity, a]- Parameters:
right- Span Right- Returns:
- The Gauss-Laguerre Abscissa Transform for Integrals in [-Infinity, a]
-
variateChange
Retrieve the R1 to R1 Variate Change Function- Returns:
- The R1 to R1 Variate Change Function
-
pointValueScale
Retrieve the R1 Point Value Scale Function- Returns:
- The R1 Point Value Scale Function
-
quadratureScale
public double quadratureScale()Retrieve the Quadrature Scale- Returns:
- The Quadrature Scale
-