Uses of Class
com.irurueta.algebra.RankDeficientMatrixException
Packages that use RankDeficientMatrixException
Package
Description
This package contains classes related to algebra, such as Matrix class
to contains matrices data and simple operations or Complex to handle
computations with Complex numbers.
-
Uses of RankDeficientMatrixException in com.irurueta.algebra
Methods in com.irurueta.algebra that throw RankDeficientMatrixExceptionModifier and TypeMethodDescriptionstatic MatrixUtils.inverse(double[] array) Computes array pseudo-inverse considering it as a column matrix.static voidComputes array pseudo-inverse considering it as a column matrix and stores the result in provided result matrix.static MatrixComputes matrix inverse if provided matrix is squared, or pseudo-inverse otherwise.static voidComputes matrix inverse if provided matrix is squared, or pseudo-inverse otherwise and stores the result in provided result matrix.static voidComputes the Schur complement of a symmetric matrix.static voidComputes the Schur complement of a symmetric matrix, returning always the full Schur complement.static voidComputes the Schur complement of the sub-matrix A within a symmetric matrix, returning always the full Schur complement.static MatrixUtils.schurcAndReturnNew(Matrix m, int pos, boolean fromStart, boolean sqrt, Matrix iA) Computes the Schur complement of a symmetric matrix.static MatrixUtils.schurcAndReturnNew(Matrix m, int pos, boolean fromStart, Matrix iA) Computes the Schur complement of a symmetric matrix, returning always the full Schur complement.static MatrixUtils.schurcAndReturnNew(Matrix m, int pos, Matrix iA) Computes the Schur complement of the sub-matrix A within a symmetric matrix, returning always the full Schur complement.Solves a linear system of equations of the following form: A * X = B, where A is the input matrix provided for QR decomposition, X is the solution to the system of equations, and B is the parameters vector/matrix.Solves a linear system of equations of the following form: A * X = B, where A is the input matrix provided for QR decomposition, X is the solution to the system of equations, and B is the parameters vector/matrix.voidSolves a linear system of equations of the following form: A * X = B, where A is the input matrix provided for QR decomposition, X is the solution to the system of equations, and B is the parameters vector/matrix.voidSolves a linear system of equations of the following form: A * X = B, where A is the input matrix provided for QR decomposition, X is the solution to the system of equations, and B is the parameters vector/matrix.Solves a linear system of equations of the following form: A * X = B.Solves a linear system of equations of the following form: A * X = B.voidSolves a linear system of equations of the following form: A * X = B.voidSolves a linear system of equations of the following form: A * X = B.static MatrixSolves a linear system of equations of the form: m * x = b.static voidSolves a linear system of equations of the form: m * x = b. -
Uses of RankDeficientMatrixException in com.irurueta.statistics
Methods in com.irurueta.statistics that throw RankDeficientMatrixExceptionModifier and TypeMethodDescriptiondoubleMultivariateNormalDist.mahalanobisDistance(double[] x) Computes the Mahalanobis distance of provided multivariate pot x for current mean and covariance values.doubleMultivariateNormalDist.p(double[] x) Evaluates the probability density function (p.d.f.) of a multivariate Gaussian distribution having current mean and covariance at point x.doubleMultivariateNormalDist.squaredMahalanobisDistance(double[] x) Computes the squared Mahalanobis distance of provided multivariate pot x for current mean and covariance values.