Uses of Class
org.apache.commons.math4.exception.MaxCountExceededException
| Package | Description |
|---|---|
| org.apache.commons.math4.analysis.integration |
Numerical integration (quadrature) algorithms for univariate real functions.
|
| org.apache.commons.math4.exception |
Specialized exceptions for algorithms errors.
|
| org.apache.commons.math4.linear |
Linear algebra support.
|
| org.apache.commons.math4.stat.inference |
Classes providing hypothesis testing.
|
| org.apache.commons.math4.util |
Convenience routines and common data structures used throughout the commons-math library.
|
-
Uses of MaxCountExceededException in org.apache.commons.math4.analysis.integration
Methods in org.apache.commons.math4.analysis.integration that throw MaxCountExceededException Modifier and Type Method Description protected abstract doubleBaseAbstractUnivariateIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleIterativeLegendreGaussIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleMidPointIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleRombergIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleTrapezoidIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.doubleBaseAbstractUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double lower, double upper)Integrate the function in the given interval.doubleUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double min, double max)Integrate the function in the given interval. -
Uses of MaxCountExceededException in org.apache.commons.math4.exception
Subclasses of MaxCountExceededException in org.apache.commons.math4.exception Modifier and Type Class Description classTooManyEvaluationsExceptionException to be thrown when the maximal number of evaluations is exceeded.classTooManyIterationsExceptionException to be thrown when the maximal number of iterations is exceeded. -
Uses of MaxCountExceededException in org.apache.commons.math4.linear
Methods in org.apache.commons.math4.linear that throw MaxCountExceededException Modifier and Type Method Description RealVectorIterativeLinearSolver. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorIterativeLinearSolver. solve(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealLinearOperator m, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solve(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, boolean goodb, double shift)Returns an estimate of the solution to the linear system (A - shift · I) · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b, boolean goodb, double shift)Returns the solution to the system (A - shift · I) · x = b.RealVectorSymmLQ. solve(RealLinearOperator a, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorConjugateGradient. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.abstract RealVectorIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.abstract RealVectorPreconditionedIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorPreconditionedIterativeLinearSolver. solveInPlace(RealLinearOperator a, RealVector b, RealVector x0)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealLinearOperator m, RealVector b, RealVector x, boolean goodb, double shift)Returns an estimate of the solution to the linear system (A - shift · I) · x = b.RealVectorSymmLQ. solveInPlace(RealLinearOperator a, RealVector b, RealVector x)Returns an estimate of the solution to the linear system A · x = b. -
Uses of MaxCountExceededException in org.apache.commons.math4.stat.inference
Methods in org.apache.commons.math4.stat.inference that throw MaxCountExceededException Modifier and Type Method Description doubleOneWayAnova. anovaPValue(java.util.Collection<double[]> categoryData)Computes the ANOVA P-value for a collection ofdouble[]arrays.doubleOneWayAnova. anovaPValue(java.util.Collection<SummaryStatistics> categoryData, boolean allowOneElementData)Computes the ANOVA P-value for a collection ofSummaryStatistics.booleanOneWayAnova. anovaTest(java.util.Collection<double[]> categoryData, double alpha)Performs an ANOVA test, evaluating the null hypothesis that there is no difference among the means of the data categories.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. 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. homoscedasticTTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. homoscedasticTTest(double[] sample1, double[] sample2, double alpha)static doubleInferenceTestUtils. homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)doubleTTest. homoscedasticTTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays, under the assumption that the two samples are drawn from subpopulations with equal variances.booleanTTest. homoscedasticTTest(double[] sample1, double[] sample2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha, assuming that the subpopulation variances are equal.protected doubleTTest. homoscedasticTTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test, under the assumption of equal subpopulation variances.doubleTTest. homoscedasticTTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances, under the hypothesis of equal subpopulation variances.doubleMannWhitneyUTest. mannWhitneyUTest(double[] x, double[] y)Returns the asymptotic observed significance level, or p-value, associated with a Mann-Whitney U statistic comparing mean for two independent samples.static doubleInferenceTestUtils. oneWayAnovaPValue(java.util.Collection<double[]> categoryData)static booleanInferenceTestUtils. oneWayAnovaTest(java.util.Collection<double[]> categoryData, double alpha)static doubleInferenceTestUtils. pairedTTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. pairedTTest(double[] sample1, double[] sample2, double alpha)doubleTTest. pairedTTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a paired, two-sample, two-tailed t-test based on the data in the input arrays.booleanTTest. pairedTTest(double[] sample1, double[] sample2, double alpha)Performs a paired t-test evaluating the null hypothesis that the mean of the paired differences betweensample1andsample2is 0 in favor of the two-sided alternative that the mean paired difference is not equal to 0, with significance levelalpha.static doubleInferenceTestUtils. tTest(double[] sample1, double[] sample2)static booleanInferenceTestUtils. tTest(double[] sample1, double[] sample2, double alpha)static doubleInferenceTestUtils. tTest(double mu, double[] sample)static booleanInferenceTestUtils. tTest(double mu, double[] sample, double alpha)static doubleInferenceTestUtils. tTest(double mu, StatisticalSummary sampleStats)static booleanInferenceTestUtils. tTest(double mu, StatisticalSummary sampleStats, double alpha)static doubleInferenceTestUtils. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)static booleanInferenceTestUtils. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha)doubleTTest. tTest(double[] sample1, double[] sample2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays.booleanTTest. tTest(double[] sample1, double[] sample2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsample1andsample2are drawn from populations with the same mean, with significance levelalpha.doubleTTest. tTest(double mu, double[] sample)Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the input array with the constantmu.booleanTTest. tTest(double mu, double[] sample, double alpha)Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from whichsampleis drawn equalsmu.protected doubleTTest. tTest(double m, double mu, double v, double n)Computes p-value for 2-sided, 1-sample t-test.protected doubleTTest. tTest(double m1, double m2, double v1, double v2, double n1, double n2)Computes p-value for 2-sided, 2-sample t-test.doubleTTest. tTest(double mu, StatisticalSummary sampleStats)Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the dataset described bysampleStatswith the constantmu.booleanTTest. tTest(double mu, StatisticalSummary sampleStats, double alpha)Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described bystatsis drawn equalsmu.doubleTTest. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances.booleanTTest. tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha)Performs a two-sided t-test evaluating the null hypothesis thatsampleStats1andsampleStats2describe datasets drawn from populations with the same mean, with significance levelalpha.doubleWilcoxonSignedRankTest. wilcoxonSignedRankTest(double[] x, double[] y, boolean exactPValue)Returns the observed significance level, or p-value, associated with a Wilcoxon signed ranked statistic comparing mean for two related samples or repeated measurements on a single sample. -
Uses of MaxCountExceededException in org.apache.commons.math4.util
Methods in org.apache.commons.math4.util that throw MaxCountExceededException Modifier and Type Method Description voidIntegerSequence.Incrementor. increment()Adds the increment value to the current iteration count.voidIntegerSequence.Incrementor. increment(int nTimes)Performs multiple increments.voidIncrementor. incrementCount()Deprecated.Adds one to the current iteration count.voidIncrementor. incrementCount(int value)Deprecated.Performs multiple increments.voidIterationManager. incrementIterationCount()Increments the iteration count by one, and throws an exception if the maximum number of iterations is reached.voidIncrementor.MaxCountExceededCallback. trigger(int maximalCount)Function called when the maximal count has been reached.voidIntegerSequence.Incrementor.MaxCountExceededCallback. trigger(int maximalCount)Function called when the maximal count has been reached.