Uses of Enum Class
org.flag4j.linalg.decompositions.lu.LU.Pivoting
Packages that use LU.Pivoting
Package
Description
Provides implementations of the LU decomposition for real, complex, and field matrices.
-
Uses of LU.Pivoting in org.flag4j.linalg.decompositions.lu
Subclasses with type arguments of type LU.Pivoting in org.flag4j.linalg.decompositions.luModifier and TypeClassDescriptionstatic enum
Simple enum containing pivoting options for pivoting in LU decomposition.Fields in org.flag4j.linalg.decompositions.lu declared as LU.PivotingModifier and TypeFieldDescriptionfinal LU.Pivoting
LU.pivotFlag
Flag indicating what pivoting to use.Methods in org.flag4j.linalg.decompositions.lu that return LU.PivotingModifier and TypeMethodDescriptionstatic LU.Pivoting
Returns the enum constant of this class with the specified name.static LU.Pivoting[]
LU.Pivoting.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.flag4j.linalg.decompositions.lu with parameters of type LU.PivotingModifierConstructorDescriptionComplexLU
(LU.Pivoting pivoting) Constructs a LU decomposer for complex dense matrices.protected
ComplexLU
(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer for complex dense matrices.FieldLU
(LU.Pivoting pivoting) Constructs a LU decomposer for dense field matrices.protected
FieldLU
(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer for dense field matrices.protected
LU
(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer with the specified pivoting.RealLU
(LU.Pivoting pivoting) Constructs a LU decomposer for real dense matrices.protected
RealLU
(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer for real dense matrices.