MATH-1138 #comment added deprecation and accuracy warnings
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/79ae77fd Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/79ae77fd Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/79ae77fd Branch: refs/heads/master Commit: 79ae77fda8b987b01b2e49dd0ae84819778634dc Parents: 7200c43 Author: Hank Grabowski <h...@applieddefense.com> Authored: Mon Oct 20 22:13:59 2014 -0400 Committer: Luc Maisonobe <l...@apache.org> Committed: Tue Oct 21 09:50:05 2014 +0200 ---------------------------------------------------------------------- .../math3/analysis/interpolation/BicubicSplineInterpolator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/79ae77fd/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java index bf48d0f..09acd07 100644 --- a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java +++ b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java @@ -25,7 +25,8 @@ import org.apache.commons.math3.exception.NumberIsTooSmallException; import org.apache.commons.math3.util.MathArrays; /** - * Generates a bicubic interpolating function. + * Generates a bicubic interpolating function. Due to numerical accuracy issues this should not + * be used. * * @since 2.2 * @deprecated as of 3.4 replaced by {@link org.apache.commons.math3.analysis.interpolation.PiecewiseBicubicSplineInterpolator}