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 Matrix
Utils.inverse
(double[] array) Computes array pseudo-inverse considering it as a column matrix.static void
Computes array pseudo-inverse considering it as a column matrix and stores the result in provided result matrix.static Matrix
Computes matrix inverse if provided matrix is squared, or pseudo-inverse otherwise.static void
Computes matrix inverse if provided matrix is squared, or pseudo-inverse otherwise and stores the result in provided result matrix.static void
Computes the Schur complement of a symmetric matrix.static void
Computes the Schur complement of a symmetric matrix, returning always the full Schur complement.static void
Computes the Schur complement of the sub-matrix A within a symmetric matrix, returning always the full Schur complement.static Matrix
Utils.schurcAndReturnNew
(Matrix m, int pos, boolean fromStart, boolean sqrt, Matrix iA) Computes the Schur complement of a symmetric matrix.static Matrix
Utils.schurcAndReturnNew
(Matrix m, int pos, boolean fromStart, Matrix iA) Computes the Schur complement of a symmetric matrix, returning always the full Schur complement.static Matrix
Utils.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.void
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.void
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.Solves a linear system of equations of the following form: A * X = B.void
Solves a linear system of equations of the following form: A * X = B.void
Solves a linear system of equations of the following form: A * X = B.static Matrix
Solves a linear system of equations of the form: m * x = b.static void
Solves 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 TypeMethodDescriptiondouble
MultivariateNormalDist.mahalanobisDistance
(double[] x) Computes the Mahalanobis distance of provided multivariate pot x for current mean and covariance values.double
MultivariateNormalDist.p
(double[] x) Evaluates the probability density function (p.d.f.) of a multivariate Gaussian distribution having current mean and covariance at point x.double
MultivariateNormalDist.squaredMahalanobisDistance
(double[] x) Computes the squared Mahalanobis distance of provided multivariate pot x for current mean and covariance values.