.NET Matrix Library
L Property
See Also  Send Feedback



Gets the factor L, the lower triangular matrix of the LQ factorization.

Syntax

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

Property Value

CMatrix object containing the factor L of the LQ factorization.

Requirements

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

See Also

.NET Matrix Library