Uses of Class
org.apache.commons.math3.linear.SingularMatrixException
Packages that use SingularMatrixException
Package
Description
Implementations of common discrete and continuous distributions.
Fitting of parameters against distributions.
Implementations of common discrete-time linear filters.
Linear algebra support.
-
Uses of SingularMatrixException in org.apache.commons.math3.distribution
Constructors in org.apache.commons.math3.distribution that throw SingularMatrixExceptionModifierConstructorDescriptionMultivariateNormalDistribution
(double[] means, double[][] covariances) Creates a multivariate normal distribution with the given mean vector and covariance matrix.MultivariateNormalDistribution
(RandomGenerator rng, double[] means, double[][] covariances) Creates a multivariate normal distribution with the given mean vector and covariance matrix. -
Uses of SingularMatrixException in org.apache.commons.math3.distribution.fitting
Methods in org.apache.commons.math3.distribution.fitting that throw SingularMatrixExceptionModifier and TypeMethodDescriptionvoid
MultivariateNormalMixtureExpectationMaximization.fit
(MixtureMultivariateNormalDistribution initialMixture) Fit a mixture model to the data supplied to the constructor.void
MultivariateNormalMixtureExpectationMaximization.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.math3.filter
Methods in org.apache.commons.math3.filter that throw SingularMatrixExceptionModifier and TypeMethodDescriptionvoid
KalmanFilter.correct
(double[] z) Correct the current state estimate with an actual measurement.void
KalmanFilter.correct
(RealVector z) Correct the current state estimate with an actual measurement. -
Uses of SingularMatrixException in org.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that throw SingularMatrixExceptionModifier and TypeMethodDescriptionDecompositionSolver.getInverse()
Get the pseudo-inverse of the decomposed matrix.DiagonalMatrix.inverse()
Computes the inverse of this diagonal matrix.DiagonalMatrix.inverse
(double threshold) Computes the inverse of this diagonal matrix.static RealMatrix
MatrixUtils.inverse
(RealMatrix matrix) Computes the inverse of the given matrix.static RealMatrix
MatrixUtils.inverse
(RealMatrix matrix, double threshold) Computes the inverse of the given matrix.DecompositionSolver.solve
(RealMatrix b) Solve the linear equation A × X = B for matrices A.DecompositionSolver.solve
(RealVector b) Solve the linear equation A × X = B for matrices A.