Class Evaluate

Buy me a cup of coffee via donation

Did you find the software useful? Please consider donation

or support me purchasing the license via ORDER Page , or INFIMA online store


INFIMA online store
java.lang.Object
org.mariuszgromada.math.mxparser.mathcollection.Evaluate

public final class Evaluate extends Object
Evaluate - currently only polynomial evaluation based on provided coefficients.
Version:
5.0.0
Author:
Mariusz Gromada
MathParser.org - mXparser project page
mXparser on GitHub
INFIMA place to purchase a commercial MathParser.org-mXparser software license
info@mathparser.org
ScalarMath.org - a powerful math engine and math scripting language
Scalar Lite
Scalar Pro
MathSpace.pl

Buy me a cup of coffee via donation

Did you find the software useful? Please consider donation

or support me purchasing the license via ORDER Page , or INFIMA online store


INFIMA online store
  • Constructor Details

    • Evaluate

      public Evaluate()
  • Method Details

    • 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