Uses of Class
com.irurueta.algebra.Decomposer

Packages that use Decomposer
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 Decomposer in com.irurueta.algebra

    Modifier and Type
    Class
    Description
    class 
    This class allows decomposition of matrices using Cholesky decomposition, which consists on retrieving a lower or upper triangular matrix so that input matrix can be decomposed as: A = L * L' = R' * R, where A is provided input matrix, L is a lower triangular matrix and R is an upper triangular matrix.
    class 
    This decomposer computes economy QR decomposition, which is faster than typical QR decomposition.
    class 
    This class allows decomposition of matrices using LU decomposition, which consists on retrieving two triangular matrices (lower triangular and upper triangular) as a decomposition of provided input matrix.
    class 
    This decomposer computes QR decomposition, which consists on factoring provided input matrix into an orthogonal matrix (Q) and an upper triangular matrix (R).
    class 
    This decomposer computes RQ decomposition, which consists on factoring provided input matrix into an upper triangular matrix (R) and an orthogonal matrix (Q).
    class 
    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'.