Interface ContinuedFraction.Partials
-
- Enclosing class:
- ContinuedFraction
public static interface ContinuedFraction.PartialsThis interface defines a continued fraction in terms of the partial numerators an, and the partial denominators bn. \[ z = b_0 + \cfrac{a_1}{b_1 + \cfrac{a_2}{b_2 + \cfrac{a_3}{b_3 + \cfrac{a_4}{b_4 + \ddots\,}}}} \]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleA(int n, double x)Compute an.doubleB(int n, double x)Compute bn.
-