Class LowerSFixed

java.lang.Object
org.drip.function.definition.R1ToR1
org.drip.numerical.estimation.R1ToR1Estimator
org.drip.specialfunction.incompletegamma.LowerSFixed

public abstract class LowerSFixed
extends R1ToR1Estimator
LowerSFixed implements the Lower Incomplete Gamma Function using Power Series for a Fixed s. The References are:

  • Geddes, K. O., M. L. Glasser, R. A. Moore, and T. C. Scott (1990): Evaluation of Classes of Definite Integrals involving Elementary Functions via Differentiation of Special Functions Applicable Algebra in Engineering, Communications, and 1 (2) 149-165
  • Gradshteyn, I. S., I. M. Ryzhik, Y. V. Geronimus, M. Y. Tseytlin, and A. Jeffrey (2015): Tables of Integrals, Series, and Products Academic Press
  • Mathar, R. J. (2010): Numerical Evaluation of the Oscillatory Integral over eiÏ€x x(1/x) between 1 and ∞ https://arxiv.org/pdf/0912.3844.pdf arXiV
  • National Institute of Standards and Technology (2019): Incomplete Gamma and Related Functions https://dlmf.nist.gov/8
  • Wikipedia (2019): Incomplete Gamma Function https://en.wikipedia.org/wiki/Incomplete_gamma_function
It provides the following functionality:
  • Construct the Weierstrass Lower S Fixed Series Incomplete Gamma Estimator
  • Construct the NIST (2019) Lower S Fixed Series Incomplete Gamma Estimator
  • LowerSFixed Constructor
  • Compute the Limiting Weierstrass Sum
  • Compute the Non-dimensional Incomplete Gamma (Weierstrass Gamma Star)

Module Computational Core Module
Library Function Analysis Library
Project Special Function Implementation and Analysis
Package Upper/Lower Incomplete Gamma Functions
Author:
Lakshmi Krishnamurthy
  • Constructor Details

    • LowerSFixed

      public LowerSFixed​(LowerSFixedSeries lowerSFixedSeries, DerivativeControl derivativeControl) throws java.lang.Exception
      LowerSFixed Constructor
      Parameters:
      lowerSFixedSeries - R1 To R1 Lower S Fixed Limit Series
      derivativeControl - Differential Control
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
  • Method Details

    • WeierstrassLimit

      public static final LowerSFixed WeierstrassLimit​(double s, int termCount)
      Construct the Weierstrass Lower S Fixed Series Incomplete Gamma Estimator
      Parameters:
      s - Incomplete Gamma s
      termCount - Count of the Number of Terms
      Returns:
      The Weierstrass Lower S Fixed Series Incomplete Gamma Estimator
    • NIST2019

      public static final LowerSFixed NIST2019​(double s, int termCount)
      Construct the NIST (2019) Lower S Fixed Series Incomplete Gamma Estimator
      Parameters:
      s - Incomplete Gamma s
      termCount - Count of the Number of Terms
      Returns:
      The NIST (2019) Lower S Fixed Series Incomplete Gamma Estimator
    • seriesEstimateNative

      public R1Estimate seriesEstimateNative​(double x)
      Description copied from class: R1ToR1Estimator
      Compute the Built-in Higher Order Series Estimates
      Overrides:
      seriesEstimateNative in class R1ToR1Estimator
      Parameters:
      x - X
      Returns:
      The Built-in Higher Order Series Estimates
    • weierstrassLimit

      public double weierstrassLimit​(double z) throws java.lang.Exception
      Compute the Limiting Weierstrass Sum
      Parameters:
      z - Z
      Returns:
      The Limiting Weierstrass Sum
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
    • nonDimensional

      public abstract double nonDimensional​(double z) throws java.lang.Exception
      Compute the Non-dimensional Incomplete Gamma (Weierstrass Gamma Star)
      Parameters:
      z - Z
      Returns:
      The Non-dimensional Incomplete Gamma (Weierstrass Gamma Star)
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
    • evaluate

      public double evaluate​(double z) throws java.lang.Exception
      Description copied from class: R1ToR1
      Evaluate for the given variate
      Specified by:
      evaluate in class R1ToR1
      Parameters:
      z - Variate
      Returns:
      Returns the calculated value
      Throws:
      java.lang.Exception - Thrown if evaluation cannot be done