From ed6109d0a26f9657aa964e9c5cca4b1cae82afcf Mon Sep 17 00:00:00 2001 From: Gilles Date: Mon, 15 Dec 2014 16:56:42 +0100 Subject: [PATCH] Javadoc --- .../math3/analysis/interpolation/BicubicInterpolator.java | 4 ++-- .../org/apache/commons/math3/fitting/SimpleCurveFitter.java | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolator.java b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolator.java index 7a3f94819..82ab44e31 100644 --- a/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolator.java +++ b/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicInterpolator.java @@ -33,8 +33,8 @@ import org.apache.commons.math3.util.MathArrays; * interpolation ranges, the interpolated values will be wrong at the * edges of the patch. * The {@code interpolate} method will return a function that overrides - * {@link isValidPoint(double,double)} to indicate points where the - * interpolation will be inaccurate. + * {@link BicubicInterpolatingFunction#isValidPoint(double,double)} to + * indicate points where the interpolation will be inaccurate. *

* * @since 3.4 diff --git a/src/main/java/org/apache/commons/math3/fitting/SimpleCurveFitter.java b/src/main/java/org/apache/commons/math3/fitting/SimpleCurveFitter.java index 0307e4263..3f6b7d628 100644 --- a/src/main/java/org/apache/commons/math3/fitting/SimpleCurveFitter.java +++ b/src/main/java/org/apache/commons/math3/fitting/SimpleCurveFitter.java @@ -54,9 +54,8 @@ public class SimpleCurveFitter extends AbstractCurveFitter { /** * Creates a curve fitter. - * The initial guess for the parameters will be {@link ParameterGuesser} - * computed automatically, and the maximum number of iterations of the - * optimization algorithm is set to {@link Integer#MAX_VALUE}. + * The maximum number of iterations of the optimization algorithm is set + * to {@link Integer#MAX_VALUE}. * * @param f Function to fit. * @param start Initial guess for the parameters. Cannot be {@code null}.