Uses of Class
org.apache.commons.math3.exception.ConvergenceException
-
Packages that use ConvergenceException Package Description org.apache.commons.math3.analysis.solvers Root finding algorithms, for univariate real functions.org.apache.commons.math3.fitting.leastsquares This package provides algorithms that minimize the residuals between observations and model values.org.apache.commons.math3.fraction Fraction number type and fraction number formatting.org.apache.commons.math3.geometry.euclidean.twod.hull This package provides algorithms to generate the convex hull for a set of points in an two-dimensional euclidean space.org.apache.commons.math3.geometry.hull This package provides interfaces and classes related to the convex hull problem.org.apache.commons.math3.ml.clustering Clustering algorithms.org.apache.commons.math3.optim.nonlinear.vector.jacobian This package provides optimization algorithms that require derivatives.org.apache.commons.math3.optimization.general This package provides optimization algorithms that require derivatives.org.apache.commons.math3.special Implementations of special functions such as Beta and Gamma.org.apache.commons.math3.stat.clustering All classes and sub-packages of this package are deprecated.org.apache.commons.math3.stat.inference Classes providing hypothesis testing.org.apache.commons.math3.util Convenience routines and common data structures used throughout the commons-math library. -
-
Uses of ConvergenceException in org.apache.commons.math3.analysis.solvers
Methods in org.apache.commons.math3.analysis.solvers that throw ConvergenceException Modifier and Type Method Description protected doubleBaseSecantSolver. doSolve()Method for implementing actual optimization algorithms in derived classes. -
Uses of ConvergenceException in org.apache.commons.math3.fitting.leastsquares
Methods in org.apache.commons.math3.fitting.leastsquares that throw ConvergenceException Modifier and Type Method Description private LevenbergMarquardtOptimizer.InternalDataLevenbergMarquardtOptimizer. qrDecomposition(RealMatrix jacobian, int solvedCols)Decompose a matrix A as A.P = Q.R using Householder transforms. -
Uses of ConvergenceException in org.apache.commons.math3.fraction
Subclasses of ConvergenceException in org.apache.commons.math3.fraction Modifier and Type Class Description classFractionConversionExceptionError thrown when a double value cannot be converted to a fraction in the allowed number of iterations. -
Uses of ConvergenceException in org.apache.commons.math3.geometry.euclidean.twod.hull
Methods in org.apache.commons.math3.geometry.euclidean.twod.hull that throw ConvergenceException Modifier and Type Method Description ConvexHull2DAbstractConvexHullGenerator2D. generate(java.util.Collection<Vector2D> points)Builds the convex hull from the set of input points.ConvexHull2DConvexHullGenerator2D. generate(java.util.Collection<Vector2D> points)Builds the convex hull from the set of input points. -
Uses of ConvergenceException in org.apache.commons.math3.geometry.hull
Methods in org.apache.commons.math3.geometry.hull that throw ConvergenceException Modifier and Type Method Description ConvexHull<S,P>ConvexHullGenerator. generate(java.util.Collection<P> points)Builds the convex hull from the set of input points. -
Uses of ConvergenceException in org.apache.commons.math3.ml.clustering
Methods in org.apache.commons.math3.ml.clustering that throw ConvergenceException Modifier and Type Method Description abstract java.util.List<? extends Cluster<T>>Clusterer. cluster(java.util.Collection<T> points)Perform a cluster analysis on the given set ofClusterableinstances.java.util.List<CentroidCluster<T>>KMeansPlusPlusClusterer. cluster(java.util.Collection<T> points)Runs the K-means++ clustering algorithm.java.util.List<CentroidCluster<T>>MultiKMeansPlusPlusClusterer. cluster(java.util.Collection<T> points)Runs the K-means++ clustering algorithm.private TKMeansPlusPlusClusterer. getFarthestPoint(java.util.Collection<CentroidCluster<T>> clusters)Get the point farthest to its cluster centerprivate TKMeansPlusPlusClusterer. getPointFromLargestNumberCluster(java.util.Collection<? extends Cluster<T>> clusters)Get a random point from theClusterwith the largest number of pointsprivate TKMeansPlusPlusClusterer. getPointFromLargestVarianceCluster(java.util.Collection<CentroidCluster<T>> clusters)Get a random point from theClusterwith the largest distance variance. -
Uses of ConvergenceException in org.apache.commons.math3.optim.nonlinear.vector.jacobian
Methods in org.apache.commons.math3.optim.nonlinear.vector.jacobian that throw ConvergenceException Modifier and Type Method Description private voidLevenbergMarquardtOptimizer. qrDecomposition(RealMatrix jacobian)Deprecated.Decompose a matrix A as A.P = Q.R using Householder transforms. -
Uses of ConvergenceException in org.apache.commons.math3.optimization.general
Methods in org.apache.commons.math3.optimization.general that throw ConvergenceException Modifier and Type Method Description private voidLevenbergMarquardtOptimizer. qrDecomposition(RealMatrix jacobian)Deprecated.Decompose a matrix A as A.P = Q.R using Householder transforms. -
Uses of ConvergenceException in org.apache.commons.math3.special
Methods in org.apache.commons.math3.special that throw ConvergenceException Modifier and Type Method Description doubleBesselJ. value(double x)Returns the value of the constructed Bessel function of the first kind, for the passed argument.static doubleBesselJ. value(double order, double x)Returns the first Bessel function, \(J_{order}(x)\). -
Uses of ConvergenceException in org.apache.commons.math3.stat.clustering
Methods in org.apache.commons.math3.stat.clustering that throw ConvergenceException Modifier and Type Method Description java.util.List<Cluster<T>>KMeansPlusPlusClusterer. cluster(java.util.Collection<T> points, int k, int maxIterations)Deprecated.Runs the K-means++ clustering algorithm.java.util.List<Cluster<T>>KMeansPlusPlusClusterer. cluster(java.util.Collection<T> points, int k, int numTrials, int maxIterationsPerTrial)Deprecated.Runs the K-means++ clustering algorithm.private TKMeansPlusPlusClusterer. getFarthestPoint(java.util.Collection<Cluster<T>> clusters)Deprecated.Get the point farthest to its cluster centerprivate TKMeansPlusPlusClusterer. getPointFromLargestNumberCluster(java.util.Collection<Cluster<T>> clusters)Deprecated.Get a random point from theClusterwith the largest number of pointsprivate TKMeansPlusPlusClusterer. getPointFromLargestVarianceCluster(java.util.Collection<Cluster<T>> clusters)Deprecated.Get a random point from theClusterwith the largest distance variance. -
Uses of ConvergenceException in org.apache.commons.math3.stat.inference
Methods in org.apache.commons.math3.stat.inference that throw ConvergenceException 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.private doubleMannWhitneyUTest. calculateAsymptoticPValue(double Umin, int n1, int n2)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 doubleTestUtils. oneWayAnovaPValue(java.util.Collection<double[]> categoryData)static booleanTestUtils. oneWayAnovaTest(java.util.Collection<double[]> categoryData, double alpha)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 ConvergenceException in org.apache.commons.math3.util
Methods in org.apache.commons.math3.util that throw ConvergenceException Modifier and Type Method Description doubleContinuedFraction. evaluate(double x)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, double epsilon)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, double epsilon, int maxIterations)Evaluates the continued fraction at the value x.doubleContinuedFraction. evaluate(double x, int maxIterations)Evaluates the continued fraction at the value x.
-