HomeSort by relevance Sort by last modified time
    Searched refs:LocalizedFormats (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SingularMatrixException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
37 super(LocalizedFormats.SINGULAR_MATRIX);
NonSquareMatrixException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
39 super(LocalizedFormats.NON_SQUARE_MATRIX, rows, columns);
NotPositiveDefiniteMatrixException.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
40 super(LocalizedFormats.NOT_POSITIVE_DEFINITE_MATRIX);
NotSymmetricMatrixException.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
40 super(LocalizedFormats.NOT_SYMMETRIC_MATRIX);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
MathInternalError.java 19 import org.apache.commons.math.exception.util.LocalizedFormats;
39 super(LocalizedFormats.INTERNAL_ERROR, REPORT_URL);
47 super(LocalizedFormats.INTERNAL_ERROR, REPORT_URL);
NullArgumentException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
41 super(LocalizedFormats.NULL_NOT_ALLOWED);
48 super(specific, LocalizedFormats.NULL_NOT_ALLOWED);
ConvergenceException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
46 LocalizedFormats.CONVERGENCE_FAILED,
58 LocalizedFormats.CONVERGENCE_FAILED,
DimensionMismatchException.java 19 import org.apache.commons.math.exception.util.LocalizedFormats;
43 super(LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, wrong, expected);
ZeroException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
46 super(specific, LocalizedFormats.ZERO_NOT_ALLOWED, 0);
NoDataException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
45 super(specific, LocalizedFormats.NO_DATA, (Object[]) null);
NonMonotonousSequenceException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
84 LocalizedFormats.NOT_STRICTLY_INCREASING_SEQUENCE :
85 LocalizedFormats.NOT_INCREASING_SEQUENCE) :
87 LocalizedFormats.NOT_STRICTLY_DECREASING_SEQUENCE :
88 LocalizedFormats.NOT_DECREASING_SEQUENCE),
NumberIsTooLargeException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
68 LocalizedFormats.NUMBER_TOO_LARGE :
69 LocalizedFormats.NUMBER_TOO_LARGE_BOUND_EXCLUDED,
NumberIsTooSmallException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
69 LocalizedFormats.NUMBER_TOO_SMALL :
70 LocalizedFormats.NUMBER_TOO_SMALL_BOUND_EXCLUDED,
OutOfRangeException.java 19 import org.apache.commons.math.exception.util.LocalizedFormats;
47 super(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
CardanEulerSingularityException.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
42 super(isCardan ? LocalizedFormats.CARDAN_ANGLES_SINGULARITY : LocalizedFormats.EULER_ANGLES_SINGULARITY);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
FractionConversionException.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
42 super(LocalizedFormats.FAILED_FRACTION_CONVERSION, value, maxIterations);
53 super(LocalizedFormats.FRACTION_CONVERSION_OVERFLOW, value, p, q);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
ArgumentOutsideDomainException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
41 super(argument, LocalizedFormats.ARGUMENT_OUTSIDE_DOMAIN, argument, lower, upper);
DimensionMismatchException.java 19 import org.apache.commons.math.exception.util.LocalizedFormats;
46 super(LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, dimension1, dimension2);
DuplicateSampleAbscissaException.java 19 import org.apache.commons.math.exception.util.LocalizedFormats;
39 super(LocalizedFormats.DUPLICATED_ABSCISSA,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
NoFeasibleSolutionException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
38 super(LocalizedFormats.NO_FEASIBLE_SOLUTION);
UnboundedSolutionException.java 20 import org.apache.commons.math.exception.util.LocalizedFormats;
38 super(LocalizedFormats.UNBOUNDED_SOLUTION);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractUnivariateStatistic.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
138 throw new NullArgumentException(LocalizedFormats.INPUT_ARRAY);
142 throw new NotPositiveException(LocalizedFormats.START_POSITION, begin);
146 throw new NotPositiveException(LocalizedFormats.LENGTH, length);
151 LocalizedFormats.SUBARRAY_ENDS_AFTER_ARRAY_END);
198 throw new NullArgumentException(LocalizedFormats.INPUT_ARRAY);
209 LocalizedFormats.NAN_ELEMENT_AT_INDEX, i);
213 LocalizedFormats.INFINITE_ARRAY_ELEMENT, weights[i], i);
217 LocalizedFormats.NEGATIVE_ELEMENT_AT_INDEX, i, weights[i]);
226 LocalizedFormats.WEIGHT_AT_LEAST_ONE_NON_ZERO)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DefaultTransformer.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
46 throw new MathException(LocalizedFormats.OBJECT_TRANSFORMATION);
57 LocalizedFormats.CANNOT_TRANSFORM_TO_DOUBLE, e.getMessage());
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexUtils.java 21 import org.apache.commons.math.exception.util.LocalizedFormats;
67 LocalizedFormats.NEGATIVE_COMPLEX_MODULE, r);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractDistribution.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
64 LocalizedFormats.LOWER_ENDPOINT_ABOVE_UPPER_ENDPOINT,

Completed in 659 milliseconds

1 2 3 4 5 6 7