Uses of Class
org.apache.commons.math4.exception.NotPositiveException
| Package | Description |
|---|---|
| org.apache.commons.math4.analysis.differentiation |
This package holds the main interfaces and basic building block classes
dealing with differentiation.
|
| org.apache.commons.math4.analysis.interpolation |
Univariate real functions interpolation algorithms.
|
| org.apache.commons.math4.distribution |
Implementations of common discrete and continuous distributions.
|
| org.apache.commons.math4.linear |
Linear algebra support.
|
| org.apache.commons.math4.random |
Random Data Generation
|
| org.apache.commons.math4.stat.inference |
Classes providing hypothesis testing.
|
| org.apache.commons.math4.stat.interval |
Classes providing binomial proportion confidence interval construction.
|
| org.apache.commons.math4.util |
Convenience routines and common data structures used throughout the commons-math library.
|
-
Uses of NotPositiveException in org.apache.commons.math4.analysis.differentiation
Constructors in org.apache.commons.math4.analysis.differentiation that throw NotPositiveException Constructor Description FiniteDifferencesDifferentiator(int nbPoints, double stepSize)Build a differentiator with number of points and step size when independent variable is unbounded.FiniteDifferencesDifferentiator(int nbPoints, double stepSize, double tLower, double tUpper)Build a differentiator with number of points and step size when independent variable is bounded. -
Uses of NotPositiveException in org.apache.commons.math4.analysis.interpolation
Constructors in org.apache.commons.math4.analysis.interpolation that throw NotPositiveException Constructor Description LoessInterpolator(double bandwidth, int robustnessIters, double accuracy)Construct a newLoessInterpolatorwith given bandwidth, number of robustness iterations and accuracy.MicrosphereProjectionInterpolator(InterpolatingMicrosphere microsphere, double exponent, boolean sharedSphere, double noInterpolationTolerance)Create a microsphere interpolator. -
Uses of NotPositiveException in org.apache.commons.math4.distribution
Constructors in org.apache.commons.math4.distribution that throw NotPositiveException Constructor Description EnumeratedDistribution(java.util.List<Pair<T,java.lang.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.EnumeratedRealDistribution(double[] singletons, double[] probabilities)Create a discrete real-valued distribution using the given random number generator and probability mass function enumeration.MixtureMultivariateNormalDistribution(double[] weights, double[][] means, double[][][] covariances)Creates a multivariate normal mixture distribution.MixtureMultivariateNormalDistribution(java.util.List<Pair<java.lang.Double,MultivariateNormalDistribution>> components)Creates a mixture model from a list of distributions and their associated weights. -
Uses of NotPositiveException in org.apache.commons.math4.linear
Methods in org.apache.commons.math4.linear that throw NotPositiveException Modifier and Type Method Description FieldVector<T>ArrayFieldVector. getSubVector(int index, int n)Get a subvector from consecutive elements.RealVectorArrayRealVector. getSubVector(int index, int n)Get a subvector from consecutive elements.FieldVector<T>FieldVector. getSubVector(int index, int n)Get a subvector from consecutive elements.OpenMapRealVectorOpenMapRealVector. getSubVector(int index, int n)Get a subvector from consecutive elements.abstract RealVectorRealVector. getSubVector(int index, int n)Get a subvector from consecutive elements.FieldVector<T>SparseFieldVector. getSubVector(int index, int n)Get a subvector from consecutive elements.FieldMatrix<T>AbstractFieldMatrix. power(int p)Returns the result multiplying this with itselfptimes.RealMatrixAbstractRealMatrix. power(int p)Returns the result of multiplyingthiswith itselfptimes.FieldMatrix<T>FieldMatrix. power(int p)Returns the result multiplying this with itselfptimes.RealMatrixRealMatrix. power(int p)Returns the result of multiplyingthiswith itselfptimes. -
Uses of NotPositiveException in org.apache.commons.math4.random
Methods in org.apache.commons.math4.random that throw NotPositiveException Modifier and Type Method Description double[]HaltonSequenceGenerator. skipTo(int index)Skip to the i-th point in the Halton sequence.double[]SobolSequenceGenerator. skipTo(int index)Skip to the i-th point in the Sobol sequence. -
Uses of NotPositiveException in org.apache.commons.math4.stat.inference
Methods in org.apache.commons.math4.stat.inference that throw NotPositiveException Modifier and Type Method Description doubleChiSquareTest. chiSquare(double[] expected, long[] observed)doubleChiSquareTest. chiSquare(long[][] counts)Computes the Chi-Square statistic associated with a chi-square test of independence based on the inputcountsarray, viewed as a two-way table.static doubleInferenceTestUtils. chiSquare(double[] expected, long[] observed)static doubleInferenceTestUtils. chiSquare(long[][] counts)doubleChiSquareTest. chiSquareDataSetsComparison(long[] observed1, long[] observed2)Computes a Chi-Square two sample test statistic comparing bin frequency counts inobserved1andobserved2.static doubleInferenceTestUtils. chiSquareDataSetsComparison(long[] observed1, long[] observed2)doubleChiSquareTest. chiSquareTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a Chi-square goodness of fit test comparing theobservedfrequency counts to those in theexpectedarray.booleanChiSquareTest. chiSquareTest(double[] expected, long[] observed, double alpha)Performs a Chi-square goodness of fit test evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.doubleChiSquareTest. chiSquareTest(long[][] counts)Returns the observed significance level, or p-value, associated with a chi-square test of independence based on the inputcountsarray, viewed as a two-way table.booleanChiSquareTest. chiSquareTest(long[][] counts, double alpha)Performs a chi-square test of independence evaluating the null hypothesis that the classifications represented by the counts in the columns of the input 2-way table are independent of the rows, with significance levelalpha.static doubleInferenceTestUtils. chiSquareTest(double[] expected, long[] observed)static booleanInferenceTestUtils. chiSquareTest(double[] expected, long[] observed, double alpha)static doubleInferenceTestUtils. chiSquareTest(long[][] counts)static booleanInferenceTestUtils. chiSquareTest(long[][] counts, double alpha)doubleChiSquareTest. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)Returns the observed significance level, or p-value, associated with a Chi-Square two sample test comparing bin frequency counts inobserved1andobserved2.booleanChiSquareTest. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)Performs a Chi-Square two sample test comparing two binned data sets.static doubleInferenceTestUtils. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)static booleanInferenceTestUtils. chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)doubleGTest. g(double[] expected, long[] observed)static doubleInferenceTestUtils. g(double[] expected, long[] observed)doubleGTest. gDataSetsComparison(long[] observed1, long[] observed2)Computes a G (Log-Likelihood Ratio) two sample test statistic for independence comparing frequency counts inobserved1andobserved2.static doubleInferenceTestUtils. gDataSetsComparison(long[] observed1, long[] observed2)doubleGTest. gTest(double[] expected, long[] observed)Returns the observed significance level, or p-value, associated with a G-Test for goodness of fit comparing theobservedfrequency counts to those in theexpectedarray.booleanGTest. gTest(double[] expected, long[] observed, double alpha)Performs a G-Test (Log-Likelihood Ratio Test) for goodness of fit evaluating the null hypothesis that the observed counts conform to the frequency distribution described by the expected counts, with significance levelalpha.static doubleInferenceTestUtils. gTest(double[] expected, long[] observed)static booleanInferenceTestUtils. gTest(double[] expected, long[] observed, double alpha)doubleGTest. gTestDataSetsComparison(long[] observed1, long[] observed2)Returns the observed significance level, or p-value, associated with a G-Value (Log-Likelihood Ratio) for two sample test comparing bin frequency counts inobserved1andobserved2.booleanGTest. gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)Performs a G-Test (Log-Likelihood Ratio Test) comparing two binned data sets.static doubleInferenceTestUtils. gTestDataSetsComparison(long[] observed1, long[] observed2)static booleanInferenceTestUtils. gTestDataSetsComparison(long[] observed1, long[] observed2, double alpha)doubleGTest. gTestIntrinsic(double[] expected, long[] observed)Returns the intrinsic (Hardy-Weinberg proportions) p-Value, as described in p64-69 of McDonald, J.H.static doubleInferenceTestUtils. gTestIntrinsic(double[] expected, long[] observed)static doubleInferenceTestUtils. rootLogLikelihoodRatio(long k11, long k12, long k21, long k22) -
Uses of NotPositiveException in org.apache.commons.math4.stat.interval
Methods in org.apache.commons.math4.stat.interval that throw NotPositiveException Modifier and Type Method Description ConfidenceIntervalBinomialConfidenceInterval. createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level. -
Uses of NotPositiveException in org.apache.commons.math4.util
Methods in org.apache.commons.math4.util that throw NotPositiveException Modifier and Type Method Description static voidMathArrays. checkNonNegative(long[] in)Check that all entries of the input array are >= 0.static voidMathArrays. checkNonNegative(long[][] in)Check all entries of the input array are >= 0.static longCombinatoricsUtils. stirlingS2(int n, int k)Returns the Stirling number of the second kind, "S(n,k)", the number of ways of partitioning ann-element set intoknon-empty subsets.