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


Represents an LU factorization of a general real matrix.

Syntax

Visual Basic (Declaration) 
Public Class LU 
   Implements IDisposable 
C# 
public class LU : IDisposable  
C++/CLI 
public ref class LU : public IDisposable  

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).

The LU class can be used to solve systems of linear equations and to calculate the inverse of a matrix.

Requirements

Namespace: Bluebit.MatrixLibrary

Platforms: Windows 7, Windows Vista, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows 2000

Assembly: Bluebit.MatrixLibrary (in Bluebit.MatrixLibrary.dll)

See Also

.NET Matrix Library Documentation