Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static TriangularMatrix<T> ExtractLowerTriangle<T>(
HermitianMatrix<T> matrix,
MatrixDiagonal unitDiagonal
)
Public Shared Function ExtractLowerTriangle(Of T) (
matrix As HermitianMatrix(Of T),
unitDiagonal As MatrixDiagonal
) As TriangularMatrix(Of T)
public:
generic<typename T>
static TriangularMatrix<T>^ ExtractLowerTriangle(
HermitianMatrix<T>^ matrix,
MatrixDiagonal unitDiagonal
)
static member ExtractLowerTriangle :
matrix : HermitianMatrix<'T> *
unitDiagonal : MatrixDiagonal -> TriangularMatrix<'T>
Parameters
- matrix
- Type: Extreme.Mathematics.LinearAlgebraHermitianMatrixT
A HermitianMatrixT. - unitDiagonal
- Type: Extreme.MathematicsMatrixDiagonal
If , the matrix
is unit triangular. Only the elements below the diagonal
in matrix are considered. If ,
the diagonal elements of matrix are
taken as the diagonal elements of the triangular matrix.
Type Parameters
- T
Return Value
Type:
TriangularMatrixTA
TriangularMatrixT whose elements
are contained in the lower triangular portion of
matrix.
Reference