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:
parent
2d590e38b3
commit
9ac9921796
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue