This commit is contained in:
Gilles 2014-12-15 16:56:42 +01:00
parent 2fb2221d48
commit ed6109d0a2
2 changed files with 4 additions and 5 deletions

View File

@ -33,8 +33,8 @@ import org.apache.commons.math3.util.MathArrays;
* interpolation ranges, the interpolated values will be wrong at the * interpolation ranges, the interpolated values will be wrong at the
* edges of the patch. * edges of the patch.
* The {@code interpolate} method will return a function that overrides * The {@code interpolate} method will return a function that overrides
* {@link isValidPoint(double,double)} to indicate points where the * {@link BicubicInterpolatingFunction#isValidPoint(double,double)} to
* interpolation will be inaccurate. * indicate points where the interpolation will be inaccurate.
* </p> * </p>
* *
* @since 3.4 * @since 3.4

View File

@ -54,9 +54,8 @@ public class SimpleCurveFitter extends AbstractCurveFitter {
/** /**
* Creates a curve fitter. * Creates a curve fitter.
* The initial guess for the parameters will be {@link ParameterGuesser} * The maximum number of iterations of the optimization algorithm is set
* computed automatically, and the maximum number of iterations of the * to {@link Integer#MAX_VALUE}.
* optimization algorithm is set to {@link Integer#MAX_VALUE}.
* *
* @param f Function to fit. * @param f Function to fit.
* @param start Initial guess for the parameters. Cannot be {@code null}. * @param start Initial guess for the parameters. Cannot be {@code null}.