Uses of Class
com.irurueta.algebra.LockedException
Packages that use LockedException
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 LockedException in com.irurueta.algebra
Methods in com.irurueta.algebra that throw LockedExceptionModifier and TypeMethodDescriptionvoidCholeskyDecomposer.decompose()This method computes Cholesky matrix decomposition, which consists on factoring provided input matrix whenever it is square, symmetric and positive definite into a lower triangulator factor such that it follows next expression: A = L * L' where A is input matrix and L is lower triangular factor (L' is its transposed).abstract voidDecomposer.decompose()This method computes matrix decomposition for each decomposer type.voidEconomyQRDecomposer.decompose()This method computes QR matrix decomposition, which consists on factoring provided input matrix into an orthogonal matrix (Q) and an upper triangular matrix (R).voidLUDecomposer.decompose()This method computes LU matrix decomposition, which consists on retrieving two triangular matrices (Lower triangular and Upper triangular) as a decomposition of provided input matrix.voidQRDecomposer.decompose()This method computes LU matrix decomposition, which consists on retrieving two triangular matrices (Lower triangular and Upper triangular) as a decomposition of provided input matrix.voidRQDecomposer.decompose()This method computes RQ matrix decomposition, which consists on factoring provided input matrix into an upper triangular matrix (R) and an orthogonal matrix (Q).voidSingularValueDecomposer.decompose()This method computes Singular Value matrix decomposition, which consists on factoring provided input matrix into three factors consisting of 2 unary matrices and 1 diagonal matrix containing singular values, following next expression: A = U * S * V'.voidCholeskyDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidEconomyQRDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidLUDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidQRDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidRQDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidSingularValueDecomposer.setInputMatrix(Matrix inputMatrix) Sets reference to input matrix to be decomposed.voidSingularValueDecomposer.setMaxIterations(int maxIters) SSets maximum number of iterations to be done in order to obtain convergence of singular values when computing input matrix Singular Value Decomposition. -
Uses of LockedException in com.irurueta.statistics
Methods in com.irurueta.statistics that throw LockedExceptionModifier and TypeMethodDescriptionvoidMultivariateNormalDist.processCovariance()Processes current covariance by decomposing it into a basis and its corresponding variances if needed.