Uses of Class
org.apache.commons.math3.exception.NotANumberException
Packages that use NotANumberException
Package
Description
Implementations of common discrete and continuous distributions.
Random number and random data generators.
Convenience routines and common data structures used throughout the commons-math library.
-
Uses of NotANumberException in org.apache.commons.math3.distribution
Constructors in org.apache.commons.math3.distribution that throw NotANumberExceptionModifierConstructorDescriptionEnumeratedDistribution(List<Pair<T, Double>> pmf) Create an enumerated distribution using the given probability mass function enumeration.EnumeratedDistribution(RandomGenerator rng, List<Pair<T, Double>> pmf) Create an enumerated distribution using the given random number generator and probability mass function enumeration.EnumeratedIntegerDistribution(int[] singletons, double[] probabilities) Create a discrete distribution using the given probability mass function definition.EnumeratedIntegerDistribution(RandomGenerator rng, int[] singletons, double[] probabilities) Create a discrete distribution using the given random number generator and probability mass function definition.EnumeratedRealDistribution(double[] singletons, double[] probabilities) Create a discrete real-valued distribution using the given probability mass function enumeration.EnumeratedRealDistribution(RandomGenerator rng, double[] singletons, double[] probabilities) Create a discrete real-valued distribution using the given random number generator and probability mass function enumeration. -
Uses of NotANumberException in org.apache.commons.math3.random
Methods in org.apache.commons.math3.random that throw NotANumberExceptionModifier and TypeMethodDescriptiondoubleRandomData.nextUniform(double lower, double upper) Deprecated.Generates a uniformly distributed random value from the open interval(lower, upper)(i.e., endpoints excluded).doubleRandomData.nextUniform(double lower, double upper, boolean lowerInclusive) Deprecated.Generates a uniformly distributed random value from the interval(lower, upper)or the interval[lower, upper).doubleRandomDataGenerator.nextUniform(double lower, double upper) Generates a uniformly distributed random value from the open interval(lower, upper)(i.e., endpoints excluded).doubleRandomDataGenerator.nextUniform(double lower, double upper, boolean lowerInclusive) Generates a uniformly distributed random value from the interval(lower, upper)or the interval[lower, upper).doubleRandomDataImpl.nextUniform(double lower, double upper) Deprecated.Generates a uniformly distributed random value from the open interval(lower, upper)(i.e., endpoints excluded).doubleRandomDataImpl.nextUniform(double lower, double upper, boolean lowerInclusive) Deprecated.Generates a uniformly distributed random value from the interval(lower, upper)or the interval[lower, upper). -
Uses of NotANumberException in org.apache.commons.math3.util
Methods in org.apache.commons.math3.util that throw NotANumberExceptionModifier and TypeMethodDescriptionstatic voidMathArrays.checkNotNaN(double[] in) Check that no entry of the input array isNaN.