MATH-1138 #comment added deprecation and accuracy warnings
This commit is contained in:
parent
31fae64314
commit
7200c43dea
|
@ -27,10 +27,14 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
/**
|
||||
* Function that implements the
|
||||
* <a href="http://en.wikipedia.org/wiki/Bicubic_interpolation">
|
||||
* bicubic spline interpolation</a>.
|
||||
* bicubic spline interpolation</a>. Due to numerical accuracy issues this should not
|
||||
* be used.
|
||||
*
|
||||
* @since 2.1
|
||||
* @deprecated as of 3.4 replaced by
|
||||
* {@link org.apache.commons.math3.analysis.interpolation.PiecewiseBicubicSplineInterpolatingFunction}
|
||||
*/
|
||||
@Deprecated
|
||||
public class BicubicSplineInterpolatingFunction
|
||||
implements BivariateFunction {
|
||||
/** Number of coefficients. */
|
||||
|
|
|
@ -28,7 +28,9 @@ import org.apache.commons.math3.util.MathArrays;
|
|||
* Generates a bicubic interpolating function.
|
||||
*
|
||||
* @since 2.2
|
||||
* @deprecated as of 3.4 replaced by {@link org.apache.commons.math3.analysis.interpolation.PiecewiseBicubicSplineInterpolator}
|
||||
*/
|
||||
@Deprecated
|
||||
public class BicubicSplineInterpolator
|
||||
implements BivariateGridInterpolator {
|
||||
/** Whether to initialize internal data used to compute the analytical
|
||||
|
|
Loading…
Reference in New Issue