public interface LDL<N extends Number> extends LDU<N>, MatrixDecomposition.Hermitian<N>
LDL: [A] = [L][D][L]H (or [R]H[D][R])
[A]H = [A] = [L][D][L]H
If [A] is symmetric (but not necessarily positive definite) then it can be decomposed into [L][D][L] T (or [U]T[D][U]).
Modifier and Type | Interface and Description |
---|---|
static interface |
LDL.Factory<N extends Number> |
MatrixDecomposition.Determinant<N extends Number>, MatrixDecomposition.EconomySize<N extends Number>, MatrixDecomposition.Hermitian<N extends Number>, MatrixDecomposition.Ordered<N extends Number>, MatrixDecomposition.RankRevealing<N extends Number>, MatrixDecomposition.Solver<N extends Number>, MatrixDecomposition.Values<N extends Number>
Modifier and Type | Field and Description |
---|---|
static LDL.Factory<BigDecimal> |
BIG |
static LDL.Factory<ComplexNumber> |
COMPLEX |
static LDL.Factory<Double> |
PRIMITIVE |
static LDL.Factory<Quaternion> |
QUATERNION |
static LDL.Factory<RationalNumber> |
RATIONAL |
TYPICAL
Modifier and Type | Method and Description |
---|---|
static <N extends Number> |
equals(MatrixStore<N> matrix,
LDL<N> decomposition,
NumberContext context) |
default boolean |
equals(MatrixStore<N> other,
NumberContext context) |
MatrixStore<N> |
getD() |
default MatrixStore<N> |
getL()
|
default MatrixStore<N> |
getR()
|
default boolean |
isFullSize() |
static <N extends Number> |
make(Access2D<N> typical) |
default MatrixStore<N> |
reconstruct() |
static <N extends Number> |
reconstruct(LDL<N> decomposition) |
compute, getInverse, getInverse, getSolution, getSolution, isSolvable
preallocate, preallocate, solve, solve
invert, invert, preallocate, preallocate
getDeterminant
calculateDeterminant
getRank, isFullRank
decompose, isComputed, reset
checkAndCompute
static final LDL.Factory<BigDecimal> BIG
static final LDL.Factory<ComplexNumber> COMPLEX
static final LDL.Factory<Double> PRIMITIVE
static final LDL.Factory<Quaternion> QUATERNION
static final LDL.Factory<RationalNumber> RATIONAL
static <N extends Number> boolean equals(MatrixStore<N> matrix, LDL<N> decomposition, NumberContext context)
static <N extends Number> MatrixStore<N> reconstruct(LDL<N> decomposition)
default boolean equals(MatrixStore<N> other, NumberContext context)
MatrixStore<N> getD()
default MatrixStore<N> getL()
default MatrixStore<N> getR()
default boolean isFullSize()
default MatrixStore<N> reconstruct()
reconstruct
in interface MatrixDecomposition<N extends Number>
Copyright © 2018 Optimatika. All rights reserved.