HomeSort by relevance Sort by last modified time
    Searched defs:MathRuntimeException (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexUtils.java 20 import org.apache.commons.math.MathRuntimeException;
66 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractContinuousDistribution.java 23 import org.apache.commons.math.MathRuntimeException;
69 * @throws MathRuntimeException if the specialized class hasn't implemented this function
72 public double density(double x) throws MathRuntimeException {
73 throw new MathRuntimeException(new UnsupportedOperationException(),
91 throw MathRuntimeException.createIllegalArgumentException(
180 MathRuntimeException.createIllegalArgumentException(LocalizedFormats.NOT_POSITIVE_SAMPLE_SIZE, sampleSize);
AbstractDistribution.java 22 import org.apache.commons.math.MathRuntimeException;
63 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
RandomKeyMutation.java 22 import org.apache.commons.math.MathRuntimeException;
42 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionLagrangeForm.java 20 import org.apache.commons.math.MathRuntimeException;
253 throw MathRuntimeException.createArithmeticException(
295 throw MathRuntimeException.createIllegalArgumentException(
300 throw MathRuntimeException.createIllegalArgumentException(
PolynomialFunctionNewtonForm.java 19 import org.apache.commons.math.MathRuntimeException;
212 throw MathRuntimeException.createIllegalArgumentException(
216 throw MathRuntimeException.createIllegalArgumentException(
PolynomialSplineFunction.java 22 import org.apache.commons.math.MathRuntimeException;
100 throw MathRuntimeException.createIllegalArgumentException(
105 throw MathRuntimeException.createIllegalArgumentException(
110 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java 24 import org.apache.commons.math.MathRuntimeException;
107 throw MathRuntimeException.createArithmeticException(LocalizedFormats.OVERFLOW_IN_ADDITION, x, y);
151 throw MathRuntimeException.createArithmeticException(pattern, a, b);
165 throw MathRuntimeException.createArithmeticException(pattern, a, b);
370 throw MathRuntimeException.createIllegalArgumentException(
375 throw MathRuntimeException.createIllegalArgumentException(
796 throw MathRuntimeException.createIllegalArgumentException(
829 throw MathRuntimeException.createIllegalArgumentException(
854 throw MathRuntimeException.createIllegalArgumentException(
902 throw MathRuntimeException.createArithmeticException
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
LeastSquaresConverter.java 21 import org.apache.commons.math.MathRuntimeException;
116 throw MathRuntimeException.createIllegalArgumentException(
149 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
SpearmansCorrelation.java 20 import org.apache.commons.math.MathRuntimeException;
150 throw MathRuntimeException.createIllegalArgumentException(
153 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractUnivariateStatistic.java 19 import org.apache.commons.math.MathRuntimeException;
150 throw MathRuntimeException.createIllegalArgumentException(
208 throw MathRuntimeException.createIllegalArgumentException(
212 throw MathRuntimeException.createIllegalArgumentException(
216 throw MathRuntimeException.createIllegalArgumentException(
225 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastHadamardTransformer.java 20 import org.apache.commons.math.MathRuntimeException;
163 throw MathRuntimeException.createIllegalArgumentException(
214 throw MathRuntimeException.createIllegalArgumentException(
FastCosineTransformer.java 20 import org.apache.commons.math.MathRuntimeException;
225 throw MathRuntimeException.createIllegalArgumentException(
FastSineTransformer.java 20 import org.apache.commons.math.MathRuntimeException;
219 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathRuntimeException.java 40 public class MathRuntimeException extends RuntimeException implements MathThrowable {
56 * Constructs a new <code>MathRuntimeException</code> with specified
61 * @deprecated as of 2.2 replaced by {@link #MathRuntimeException(Localizable, Object...)}
64 public MathRuntimeException(final String pattern, final Object ... arguments) {
69 * Constructs a new <code>MathRuntimeException</code> with specified
76 public MathRuntimeException(final Localizable pattern, final Object ... arguments) {
82 * Constructs a new <code>MathRuntimeException</code> with specified
88 public MathRuntimeException(final Throwable rootCause) {
95 * Constructs a new <code>MathRuntimeException</code> with specified
102 * @deprecated as of 2.2 replaced by {@link #MathRuntimeException(Throwable, Localizable, Object...)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
RombergIntegrator.java 20 import org.apache.commons.math.MathRuntimeException;
116 throw MathRuntimeException.createIllegalArgumentException(
SimpsonIntegrator.java 20 import org.apache.commons.math.MathRuntimeException;
107 throw MathRuntimeException.createIllegalArgumentException(
TrapezoidIntegrator.java 20 import org.apache.commons.math.MathRuntimeException;
137 throw MathRuntimeException.createIllegalArgumentException(
UnivariateRealIntegratorImpl.java 20 import org.apache.commons.math.MathRuntimeException;
116 throw MathRuntimeException.createIllegalStateException(LocalizedFormats.NO_RESULT_AVAILABLE);
165 throw MathRuntimeException.createIllegalArgumentException(
178 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
SecantSolver.java 21 import org.apache.commons.math.MathRuntimeException;
177 throw MathRuntimeException.createIllegalArgumentException(
UnivariateRealSolverUtils.java 21 import org.apache.commons.math.MathRuntimeException;
174 throw MathRuntimeException.createIllegalArgumentException(
178 throw MathRuntimeException.createIllegalArgumentException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
GeometricMean.java 21 import org.apache.commons.math.MathRuntimeException;
199 throw MathRuntimeException.createIllegalStateException(
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
TTestImpl.java 20 import org.apache.commons.math.MathRuntimeException;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowFieldMatrix.java 24 import org.apache.commons.math.MathRuntimeException;
116 throw MathRuntimeException.createIllegalArgumentException(
121 throw MathRuntimeException.createIllegalArgumentException(
126 throw MathRuntimeException.createIllegalArgumentException(
311 throw MathRuntimeException.createIllegalStateException(
315 throw MathRuntimeException.createIllegalStateException(
320 throw MathRuntimeException.createIllegalArgumentException(
326 throw MathRuntimeException.createIllegalArgumentException(
332 throw MathRuntimeException.createIllegalArgumentException(
410 throw MathRuntimeException.createIllegalArgumentException
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
ValueServer.java 25 import org.apache.commons.math.MathRuntimeException;
123 default: throw MathRuntimeException.createIllegalStateException(
317 throw MathRuntimeException.createIllegalStateException(LocalizedFormats.DIGEST_NOT_INITIALIZED);
350 throw MathRuntimeException.createEOFException(LocalizedFormats.URL_CONTAINS_NO_DATA,

Completed in 286 milliseconds

1 2 3 4