.NET Matrix Library
LU Class Members
See Also  Properties  Methods  Send comments on this topic


The following tables list the members exposed by LU.

Public Constructors

 NameDescription
public ConstructorLU ConstructorInitializes a new instance of the LU class computing the LU factorization of a general complex matrix.  
Top

Public Properties

 NameDescription
public PropertyColsGets the number of columns of the matrix that is represented by the factorization.  
public PropertyIsSingularGets a Boolean value indicating whether the LU factorization represents a singular matrix.  
public PropertyLGets the L factor, the lower triangular part of the LU factorization.  
public PropertyPGets the P factor, the permutation matrix of the LU factorization.  
public PropertyRowsGets the number of rows of the matrix that is represented by the factorization.  
public PropertyUGets the U factor, the upper triangular part of the LU factorization.  
Top

Public Methods

 NameDescription
public MethodDeterminantReturns the determinant of a square real matrix using its LU factorization.  
public MethodGetPivotsGets an array of integers containing the pivot indices.  
public MethodInverseReturns the inverse of a square real matrix using its LU factorization.  
public MethodSolveSolves a system of linear equations with multiple right hands using the LU factorization of a general real matrix.  
Top

See Also

.NET Matrix Library Documentation