Uses of Interface
org.ojalgo.matrix.decomposition.MatrixDecomposition.EconomySize

Package
Description
 
  • Uses of MatrixDecomposition.EconomySize in org.ojalgo.matrix.decomposition

    Modifier and Type
    Interface
    Description
    interface 
    Bidiagonal<N extends Comparable<N>>
    A general matrix [A] can be factorized by similarity transformations into the form [A]=[LQ][D][RQ] -1 where: [A] (m-by-n) is any, real or complex, matrix [D] (r-by-r) or (m-by-n) is, upper or lower, bidiagonal [LQ] (m-by-r) or (m-by-m) is orthogonal [RQ] (n-by-r) or (n-by-n) is orthogonal r = min(m,n)
    static interface 
    “Spectral decomposition” refers specifically to the orthogonal/unitary eigen-decomposition of a normal matrix (most commonly Hermitian / symmetric).
    interface 
    QR<N extends Comparable<N>>
    QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).
    interface 
    Singular Value: [A] = [U][S][V]T Decomposes [this] into [U], [S] and [V] where: [U] is an orthogonal matrix.