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 enumSimple enum containing pivoting options for pivoting in LU decomposition.Fields in org.flag4j.linalg.decompositions.lu declared as LU.PivotingModifier and TypeFieldDescriptionfinal LU.PivotingLU.pivotFlagFlag indicating what pivoting to use.Methods in org.flag4j.linalg.decompositions.lu that return LU.PivotingModifier and TypeMethodDescriptionstatic LU.PivotingReturns 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.protectedComplexLU(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.protectedFieldLU(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer for dense field matrices.protectedLU(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.protectedRealLU(LU.Pivoting pivoting, boolean inPlace) Constructs a LU decomposer for real dense matrices.