Class Evaluate


  • public final class Evaluate
    extends java.lang.Object
    Evaluate - currently only polynomial evaluation based on provided coefficients.
    Version:
    5.0.0
    • 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 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 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 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