Class Evaluate

    • Constructor Summary

      Constructors 
      Constructor Description
      Evaluate()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static double p1evl​(double x, double[] coef, int n)
      Polynomial evaluation for the SpecialFunctions.logGamma(double)
      static double polevl​(double x, double[] coef, int n)
      Polynomial evaluation for the SpecialFunctions.logGamma(double)
      static double polynomial​(double x, double[] coefficients)
      Polynomial evaluation based on provided coefficients.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Evaluate

        public Evaluate()
    • Method Detail

      • polynomial

        public static final double polynomial​(double x,
                                              double[] coefficients)
        Polynomial evaluation based on provided coefficients.
        Parameters:
        x - Point at which polynomial will be evaluated
        coefficients - Polynomial coefficients
        Returns:
        Polynomial value
      • p1evl

        public static final double p1evl​(double x,
                                         double[] coef,
                                         int n)
        Polynomial evaluation for the SpecialFunctions.logGamma(double)
        Parameters:
        x - Argument value
        coef - List of polynomial coefficients
        n - Polynomial degree
        Returns:
        Polynomial value
      • polevl

        public static final double polevl​(double x,
                                          double[] coef,
                                          int n)
        Polynomial evaluation for the SpecialFunctions.logGamma(double)
        Parameters:
        x - Argument value
        coef - List of polynomial coefficients
        n - Polynomial degree
        Returns:
        Polynomial value