.NET Matrix Library
P Property
See Also  Send comments on this topic


Gets the P factor, the permutation matrix of the LU factorization.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property P As Matrix
C# 
public Matrix P {get;}
C++/CLI 
public:
property Matrix^ P {
   Matrix^ get();
}

Property Value

Matrix object containing the P 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

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

See Also

.NET Matrix Library Documentation