Interface PolynomialsUtils.RecurrenceCoefficientsGenerator

  • Enclosing class:
    PolynomialsUtils

    public static interface PolynomialsUtils.RecurrenceCoefficientsGenerator
    Interface for recurrence coefficients generation.
    • Method Detail

      • generate

        org.hipparchus.fraction.BigFraction[] generate​(int k)
        Generate recurrence coefficients.
        Parameters:
        k - highest degree of the polynomials used in the recurrence
        Returns:
        an array of three coefficients such that Pk+1(X) = (a[0] + a[1] X) Pk(X) - a[2] Pk-1(X)