HomeSort by relevance Sort by last modified time
    Searched defs:convergence (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
GaussNewtonEstimator.java 53 /** Default threshold for cost convergence. */
59 /** Threshold for cost convergence. */
60 private double convergence; field in class:GaussNewtonEstimator
72 this.convergence = DEFAULT_CONVERGENCE;
78 * <p>This constructor builds an estimator and stores its convergence
97 * @param convergence criterion threshold below which we do not need
102 * J<sub>n</sub> &times convergence</code>, where <code>J<sub>n</sub></code>
106 public GaussNewtonEstimator(final int maxCostEval, final double convergence,
110 this.convergence = convergence;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventState.java 51 /** Convergence threshold for event localization. */
52 private final double convergence; field in class:EventState
91 * @param convergence convergence threshold in the event time search
96 final double convergence, final int maxIterationCount) {
99 this.convergence = FastMath.abs(convergence);
128 /** Get the convergence threshold for event localization.
129 * @return convergence threshold for event localization
132 return convergence;
    [all...]

Completed in 69 milliseconds