fixed typo on bracket type for divided differences

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1148685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-07-20 10:24:15 +00:00
parent 2d590e38b3
commit 9ac9921796
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class DividedDifferenceInterpolator
* <p>
* The divided difference array is defined recursively by <pre>
* f[x0] = f(x0)
* f[x0,x1,...,xk] = (f(x1,...,xk) - f(x0,...,x[k-1])) / (xk - x0)
* f[x0,x1,...,xk] = (f[x1,...,xk] - f[x0,...,x[k-1]]) / (xk - x0)
* </pre></p>
* <p>
* The computational complexity is O(N^2).</p>