.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 Matrix
Visual Basic (Usage)Copy Code
Dim instance As Cholesky
Dim value As Matrix
 
value = instance.L
C# 
public Matrix L {get;}
C++/CLI 
public:
property Matrix^ L {
   Matrix^ get();
}

Property Value

Matrix object containing the factor L of the Cholesky factorization.

Remarks

L property returns the lower triangular part of the Cholesky factorizations that satisfies the relation A = L * LT , where LT denotes the transpose 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