Package edu.jas.ps

Interface TaylorFunction<C extends RingElem<C>>

    • Method Detail

      • getFacul

        long getFacul()
        Get the factorial coefficient.
        Returns:
        factorial coefficient.
      • isZERO

        boolean isZERO()
        Test if this is zero.
        Returns:
        true if this is 0, else false.
      • derivative

        TaylorFunction<Cderivative​(ExpVector i)
        Multi-partial derivative.
        Parameters:
        i - exponent vector.
        Returns:
        partial derivative of this with respect to all variables.
      • evaluate

        C evaluate​(C a)
        Evaluate.
        Parameters:
        a - element.
        Returns:
        this(a).
      • evaluate

        C evaluate​(java.util.List<C> a)
        Evaluate at a tuple of elements.
        Parameters:
        a - tuple of elements.
        Returns:
        this(a).