.NET Matrix Library
U Property
See Also  Send Feedback



Gets the U factor, the upper triangular part of the LU factorization.

Syntax

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

Property Value

CMatrix object containing the U factor of the LU factorization.

Remarks

The LU factorization of a general m by n matrix is formed as A = P*L*U where P is a permutation matrix, L is lower triangular with unit diagonal elements (lower trapezoidal if m>n) and U is upper triangular (upper trapezoidal if m<n).

Requirements

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

See Also

.NET Matrix Library