diff --git a/src/java/org/apache/commons/math/analysis/DividedDifferenceInterpolator.java b/src/java/org/apache/commons/math/analysis/DividedDifferenceInterpolator.java index d7c180775..8095251d1 100755 --- a/src/java/org/apache/commons/math/analysis/DividedDifferenceInterpolator.java +++ b/src/java/org/apache/commons/math/analysis/DividedDifferenceInterpolator.java @@ -76,10 +76,12 @@ public class DividedDifferenceInterpolator implements UnivariateRealInterpolator } /** - * Returns a copy of the divided difference array defined recursively by + * Returns a copy of the divided difference array. + *

+ * The divided difference array is defined recursively by

      * f[x0] = f(x0)
      * f[x0,x1,...,xk] = (f(x1,...,xk) - f(x0,...,x[k-1])) / (xk - x0)
-     * 

+ *

* The computational complexity is O(N^2). * * @return a fresh copy of the divided difference array