.NET Matrix Library
L Property
See Also  Send Feedback



Gets the factor L, the lower triangular part of the Cholesky factorization.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property L As CMatrix
Visual Basic (Usage)Copy Code
Dim instance As CCholesky
Dim value As CMatrix
 
value = instance.L
C# 
public CMatrix L {get;}
C++/CLI 
public:
property CMatrix^ L {
   CMatrix^ get();
}

Property Value

A CMatrix object containing the L factor of the Cholesky factorization.

Remarks

Lproperty returns the lower triangular part of the Cholesky factorizations that satisfies the relation A = L*LH, where LH denotes the conjugate transpose (adjoint) of the L matrix.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library