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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
LevenbergMarquardtEstimator.java 147 private double orthoTolerance;
211 * @param orthoTolerance desired max cosine on the orthogonality
215 public void setOrthoTolerance(double orthoTolerance) {
216 this.orthoTolerance = orthoTolerance;
331 if (maxCosine <= orthoTolerance) {
466 orthoTolerance);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
LevenbergMarquardtOptimizer.java 144 private double orthoTolerance;
220 * @param orthoTolerance desired max cosine on the orthogonality
223 public void setOrthoTolerance(double orthoTolerance) {
224 this.orthoTolerance = orthoTolerance;
329 if (maxCosine <= orthoTolerance) {
473 orthoTolerance);
    [all...]

Completed in 117 milliseconds