Deprecation

Deprecating classes whose functionality is based on buggy code in
"BicubicSplinInterpolatingFunction" (MATH-1166).
This commit is contained in:
Gilles 2014-12-01 14:51:34 +01:00
parent 34f3f41960
commit c53f210610
3 changed files with 6 additions and 0 deletions

View File

@ -34,7 +34,9 @@ import org.apache.commons.math3.optim.SimpleVectorValueChecker;
* polynomial fitting.
*
* @since 2.2
* @deprecated To be removed in 4.0 (see MATH-1166).
*/
@Deprecated
public class SmoothingPolynomialBicubicSplineInterpolator
extends BicubicSplineInterpolator {
/** Fitter for x. */

View File

@ -34,7 +34,9 @@ import org.apache.commons.math3.util.MathArrays;
* </quote>
*
* @since 2.2
* @deprecated To be removed in 4.0 (see MATH-1166).
*/
@Deprecated
public class TricubicSplineInterpolatingFunction
implements TrivariateFunction {
/**

View File

@ -26,7 +26,9 @@ import org.apache.commons.math3.util.MathArrays;
* Generates a tricubic interpolating function.
*
* @since 2.2
* @deprecated To be removed in 4.0 (see MATH-1166).
*/
@Deprecated
public class TricubicSplineInterpolator
implements TrivariateGridInterpolator {
/**