HomeSort by relevance Sort by last modified time
    Searched refs:NotStrictlyPositiveException (Results 1 - 8 of 8) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NotStrictlyPositiveException.java 27 public class NotStrictlyPositiveException extends NumberIsTooSmallException {
37 public NotStrictlyPositiveException(Number value) {
46 public NotStrictlyPositiveException(Localizable specific,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
MicrosphereInterpolator.java 22 import org.apache.commons.math.exception.NotStrictlyPositiveException;
110 * @throws NotStrictlyPositiveException if {@code elements <= 0}.
114 throw new NotStrictlyPositiveException(elements);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
AbstractRandomGenerator.java 19 import org.apache.commons.math.exception.NotStrictlyPositiveException;
154 * @throws NotStrictlyPositiveException if {@code n <= 0}.
158 throw new NotStrictlyPositiveException(n);
BitsStreamGenerator.java 19 import org.apache.commons.math.exception.NotStrictlyPositiveException;
126 throw new NotStrictlyPositiveException(n);
RandomDataImpl.java 42 import org.apache.commons.math.exception.NotStrictlyPositiveException;
151 * @throws NotStrictlyPositiveException if {@code len <= 0}.
155 throw new NotStrictlyPositiveException(LocalizedFormats.LENGTH, len);
247 * @throws NotStrictlyPositiveException if {@code len <= 0}.
251 throw new NotStrictlyPositiveException(LocalizedFormats.LENGTH, len);
355 * @throws NotStrictlyPositiveException if {@code mean <= 0}.
359 throw new NotStrictlyPositiveException(LocalizedFormats.MEAN, mean);
459 * @throws NotStrictlyPositiveException if {@code sigma <= 0}.
463 throw new NotStrictlyPositiveException(LocalizedFormats.STANDARD_DEVIATION, sigma);
480 * @throws NotStrictlyPositiveException if {@code mean <= 0}
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
BracketFinder.java 20 import org.apache.commons.math.exception.NotStrictlyPositiveException;
98 throw new NotStrictlyPositiveException(growLimit);
101 throw new NotStrictlyPositiveException(maxIterations);
BrentOptimizer.java 21 import org.apache.commons.math.exception.NotStrictlyPositiveException;
87 throw new NotStrictlyPositiveException(eps);
90 throw new NotStrictlyPositiveException(t);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MultidimensionalCounter.java 22 import org.apache.commons.math.exception.NotStrictlyPositiveException;
161 * @throws NotStrictlyPositiveException if one of the sizes is
183 throw new NotStrictlyPositiveException(tS);

Completed in 212 milliseconds