Interface PolynomialsUtils.RecurrenceCoefficientsGenerator
-
- Enclosing class:
- PolynomialsUtils
private static interface PolynomialsUtils.RecurrenceCoefficientsGenerator
Interface for recurrence coefficients generation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigFraction[]
generate(int k)
Generate recurrence coefficients.
-
-
-
Method Detail
-
generate
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 \( P_{k+1}(x) = (a[0] + a[1] x) P_k(x) - a[2] P_{k-1}(x) \)
-
-