Uses of Interface
org.ojalgo.matrix.decomposition.MatrixDecomposition.EconomySize
-
Packages that use MatrixDecomposition.EconomySize Package Description org.ojalgo.matrix.decomposition -
-
Uses of MatrixDecomposition.EconomySize in org.ojalgo.matrix.decomposition
Subinterfaces of MatrixDecomposition.EconomySize in org.ojalgo.matrix.decomposition Modifier and Type Interface Description interface
Bidiagonal<N extends java.lang.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)interface
QR<N extends java.lang.Comparable<N>>
QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).interface
SingularValue<N extends java.lang.Comparable<N>>
Singular Value: [A] = [U][D][V]T Decomposes [this] into [U], [D] and [V] where: [U] is an orthogonal matrix.Classes in org.ojalgo.matrix.decomposition that implement MatrixDecomposition.EconomySize Modifier and Type Class Description (package private) class
BidiagonalDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
BidiagonalDecomposition.C128
(package private) static class
BidiagonalDecomposition.H256
(package private) static class
BidiagonalDecomposition.Q128
(package private) static class
BidiagonalDecomposition.R064
(package private) static class
BidiagonalDecomposition.R128
(package private) class
QRDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
QRDecomposition.C128
(package private) static class
QRDecomposition.H256
(package private) static class
QRDecomposition.Q128
(package private) static class
QRDecomposition.R064
(package private) static class
QRDecomposition.R128
(package private) class
RawQR
For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.(package private) class
RawSingularValue
Singular Value Decomposition.(package private) class
SingularValueDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
SingularValueDecomposition.C128
(package private) static class
SingularValueDecomposition.H256
(package private) static class
SingularValueDecomposition.Q128
(package private) static class
SingularValueDecomposition.R064
(package private) static class
SingularValueDecomposition.R128
-