Uses of Class
org.apache.commons.math4.linear.SingularMatrixException
| Package | Description |
|---|---|
| org.apache.commons.math4.distribution |
Implementations of common discrete and continuous distributions.
|
| org.apache.commons.math4.distribution.fitting |
Fitting of parameters against distributions.
|
| org.apache.commons.math4.linear |
Linear algebra support.
|
-
Uses of SingularMatrixException in org.apache.commons.math4.distribution
Constructors in org.apache.commons.math4.distribution that throw SingularMatrixException Constructor Description MultivariateNormalDistribution(double[] means, double[][] covariances)Creates a multivariate normal distribution with the given mean vector and covariance matrix. -
Uses of SingularMatrixException in org.apache.commons.math4.distribution.fitting
Methods in org.apache.commons.math4.distribution.fitting that throw SingularMatrixException Modifier and Type Method Description voidMultivariateNormalMixtureExpectationMaximization. fit(MixtureMultivariateNormalDistribution initialMixture)Fit a mixture model to the data supplied to the constructor.voidMultivariateNormalMixtureExpectationMaximization. fit(MixtureMultivariateNormalDistribution initialMixture, int maxIterations, double threshold)Fit a mixture model to the data supplied to the constructor. -
Uses of SingularMatrixException in org.apache.commons.math4.linear
Methods in org.apache.commons.math4.linear that throw SingularMatrixException Modifier and Type Method Description RealMatrixDecompositionSolver. getInverse()Get the pseudo-inverse of the decomposed matrix.DiagonalMatrixDiagonalMatrix. inverse()Computes the inverse of this diagonal matrix.DiagonalMatrixDiagonalMatrix. inverse(double threshold)Computes the inverse of this diagonal matrix.static RealMatrixMatrixUtils. inverse(RealMatrix matrix)Computes the inverse of the given matrix.static RealMatrixMatrixUtils. inverse(RealMatrix matrix, double threshold)Computes the inverse of the given matrix.RealMatrixDecompositionSolver. solve(RealMatrix b)Solve the linear equation A × X = B for matrices A.RealVectorDecompositionSolver. solve(RealVector b)Solve the linear equation A × X = B for matrices A.