.NET Matrix Library
LU Constructor
See Also  Send Feedback



matrix
A Matrix object containing the matrix to factor.
Initializes a new instance of the LU class computing the LU factorization of a general complex matrix.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As Matrix _
)
Visual Basic (Usage)Copy Code
Dim matrix As Matrix
 
Dim instance As New LU(matrix)
C# 
public LU( 
   Matrix matrix
)
C++/CLI 
public:
LU( 
   Matrix^ matrix
)

Parameters

matrix
A Matrix object containing the matrix to factor.

Remarks

LU constructor never fails. The IsSingular property indicates whether the matrix has been found to be singular.

Requirements

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

See Also

.NET Matrix Library