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

1 2 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
Distribution.java 19 import org.apache.commons.math.MathException;
36 * @throws MathException if the cumulative probability can not be
39 double cumulativeProbability(double x) throws MathException;
50 * @throws MathException if the cumulative probability can not be
54 double cumulativeProbability(double x0, double x1) throws MathException;
IntegerDistribution.java 19 import org.apache.commons.math.MathException;
45 * @throws MathException if the cumulative probability can not be
48 double cumulativeProbability(int x) throws MathException;
55 * @throws MathException if the cumulative probability can not be
59 double cumulativeProbability(int x0, int x1) throws MathException;
79 * @throws MathException if the inverse cumulative probability can not be
83 int inverseCumulativeProbability(double p) throws MathException;
ContinuousDistribution.java 19 import org.apache.commons.math.MathException;
39 * @throws MathException if the inverse cumulative probability can not be
42 double inverseCumulativeProbability(double p) throws MathException;
HasDensity.java 20 import org.apache.commons.math.MathException;
41 * @throws MathException if probability density cannot be computed at specifed point
43 double density(P x) throws MathException;
PoissonDistribution.java 19 import org.apache.commons.math.MathException;
60 * @throws MathException if an error occurs computing the normal approximation
62 double normalApproximateProbability(int x) throws MathException;
BetaDistribution.java 19 import org.apache.commons.math.MathException;
61 * @exception MathException if probability density cannot be computed
63 double density(Double x) throws MathException;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
OneWayAnova.java 19 import org.apache.commons.math.MathException;
51 * @throws MathException if the statistic can not be computed do to a
55 throws IllegalArgumentException, MathException;
72 * @throws MathException if the statistic can not be computed do to a
76 throws IllegalArgumentException, MathException;
97 * @throws MathException if the statistic can not be computed do to a
101 throws IllegalArgumentException, MathException;
ChiSquareTest.java 19 import org.apache.commons.math.MathException;
84 * @throws MathException if an error occurs computing the p-value
87 throws IllegalArgumentException, MathException;
119 * @throws MathException if an error occurs performing the test
122 throws IllegalArgumentException, MathException;
179 * @throws MathException if an error occurs computing the p-value
182 throws IllegalArgumentException, MathException;
217 * @throws MathException if an error occurs performing the test
220 throws IllegalArgumentException, MathException;
UnknownDistributionChiSquareTest.java 19 import org.apache.commons.math.MathException;
101 * @throws MathException if an error occurs computing the p-value
104 throws IllegalArgumentException, MathException;
139 * @throws MathException if an error occurs performing the test
142 throws IllegalArgumentException, MathException;
TTest.java 19 import org.apache.commons.math.MathException;
65 * @throws MathException if the statistic can not be computed do to a
69 throws IllegalArgumentException, MathException;
101 * @throws MathException if an error occurs computing the p-value
104 throws IllegalArgumentException, MathException;
135 * @throws MathException if an error occurs performing the test
141 throws IllegalArgumentException, MathException;
340 * @throws MathException if an error occurs computing the p-value
343 throws IllegalArgumentException, MathException;
377 * @throws MathException if an error computing the p-valu
    [all...]
TestUtils.java 20 import org.apache.commons.math.MathException;
177 throws IllegalArgumentException, MathException {
185 throws IllegalArgumentException, MathException {
194 throws IllegalArgumentException, MathException {
202 throws IllegalArgumentException, MathException {
211 throws IllegalArgumentException, MathException {
219 throws IllegalArgumentException, MathException {
260 throws IllegalArgumentException, MathException {
268 throws IllegalArgumentException, MathException {
277 throws IllegalArgumentException, MathException {
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
NumberTransformer.java 19 import org.apache.commons.math.MathException;
36 * @throws MathException if the Object can not be transformed into a Double.
38 double transform(Object o) throws MathException;
DefaultTransformer.java 22 import org.apache.commons.math.MathException;
41 * @throws MathException if it cannot successfully be transformed.
44 public double transform(Object o) throws MathException {
46 throw new MathException(LocalizedFormats.OBJECT_TRANSFORMATION);
56 throw new MathException(e,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BivariateRealGridInterpolator.java 19 import org.apache.commons.math.MathException;
39 * @throws MathException if arguments violate assumptions made by the
43 throws MathException;
MultivariateRealInterpolator.java 19 import org.apache.commons.math.MathException;
40 * @throws MathException if arguments violate assumptions made by the
45 throws MathException, IllegalArgumentException;
TrivariateRealGridInterpolator.java 19 import org.apache.commons.math.MathException;
44 * @throws MathException if arguments violate assumptions made by the
48 throws MathException;
UnivariateRealInterpolator.java 19 import org.apache.commons.math.MathException;
34 * @throws MathException if arguments violate assumptions made by the
38 throws MathException;
NevilleInterpolator.java 21 import org.apache.commons.math.MathException;
48 * @throws MathException if arguments are invalid
51 throws MathException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
CardanEulerSingularityException.java 20 import org.apache.commons.math.MathException;
30 extends MathException {
NotARotationMatrixException.java 20 import org.apache.commons.math.MathException;
32 extends MathException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
NotPositiveDefiniteMatrixException.java 20 import org.apache.commons.math.MathException;
31 public class NotPositiveDefiniteMatrixException extends MathException {
NotSymmetricMatrixException.java 20 import org.apache.commons.math.MathException;
31 public class NotSymmetricMatrixException extends MathException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/special/
Erf.java 19 import org.apache.commons.math.MathException;
51 * @throws MathException if the algorithm fails to converge.
54 public static double erf(double x) throws MathException {
80 * @throws MathException if the algorithm fails to converge
84 public static double erfc(double x) throws MathException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
IntegratorException.java 20 import org.apache.commons.math.MathException;
30 extends MathException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventException.java 20 import org.apache.commons.math.MathException;
29 public class EventException extends MathException {

Completed in 241 milliseconds

1 2 3