Matrix<T>.GetSymmetricIndefiniteDecomposition Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetSymmetricIndefiniteDecomposition() Returns the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.
GetSymmetricIndefiniteDecomposition(Boolean) Returns the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.

GetSymmetricIndefiniteDecomposition

Returns the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.
C#
public SymmetricIndefiniteDecomposition<T> GetSymmetricIndefiniteDecomposition()

Return Value

SymmetricIndefiniteDecomposition<T>
An SymmetricIndefiniteDecomposition<T> object that represents the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.

GetSymmetricIndefiniteDecomposition(Boolean)

Returns the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.
C#
public virtual SymmetricIndefiniteDecomposition<T> GetSymmetricIndefiniteDecomposition(
	bool overwriteMatrix
)

Parameters

overwriteMatrix  Boolean
A boolean value that indicates whether the contents of the matrix may be overwritten by the decomposition.

Return Value

SymmetricIndefiniteDecomposition<T>
An SymmetricIndefiniteDecomposition<T> object that represents the symmetric indefinite (Bunch-Kaufman) decomposition of the matrix.

See Also